diff --git a/internal/services/instance/action_create_snapshot.go b/internal/services/instance/action_create_snapshot.go
new file mode 100644
index 000000000..75775aff8
--- /dev/null
+++ b/internal/services/instance/action_create_snapshot.go
@@ -0,0 +1,235 @@
+package instance
+
+import (
+ "context"
+ "fmt"
+
+ "github.com/hashicorp/terraform-plugin-framework/action"
+ "github.com/hashicorp/terraform-plugin-framework/action/schema"
+ "github.com/hashicorp/terraform-plugin-framework/types"
+ "github.com/hashicorp/terraform-plugin-framework/types/basetypes"
+ block "github.com/scaleway/scaleway-sdk-go/api/block/v1alpha1"
+ "github.com/scaleway/scaleway-sdk-go/api/instance/v1"
+ "github.com/scaleway/scaleway-sdk-go/scw"
+ "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality"
+ "github.com/scaleway/terraform-provider-scaleway/v2/internal/meta"
+ "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/instance/instancehelpers"
+)
+
+var (
+ _ action.Action = (*CreateSnapshot)(nil)
+ _ action.ActionWithConfigure = (*CreateSnapshot)(nil)
+)
+
+type CreateSnapshot struct {
+ blockAndInstanceAPI *instancehelpers.BlockAndInstanceAPI
+}
+
+func (c *CreateSnapshot) Configure(_ context.Context, req action.ConfigureRequest, resp *action.ConfigureResponse) {
+ if req.ProviderData == nil {
+ return
+ }
+
+ m, ok := req.ProviderData.(*meta.Meta)
+ if !ok {
+ resp.Diagnostics.AddError(
+ "Unexpected Action Configure Type",
+ fmt.Sprintf("Expected *scw.Client, got: %T. Please report this issue to the provider developers.", req.ProviderData),
+ )
+
+ return
+ }
+
+ client := m.ScwClient()
+ c.blockAndInstanceAPI = instancehelpers.NewBlockAndInstanceAPI(client)
+}
+
+func (c *CreateSnapshot) Metadata(_ context.Context, req action.MetadataRequest, resp *action.MetadataResponse) {
+ resp.TypeName = req.ProviderTypeName + "_instance_create_snapshot"
+}
+
+type CreateSnapshotModel struct {
+ Zone types.String `tfsdk:"zone"`
+ VolumeID types.String `tfsdk:"volume_id"`
+ Name types.String `tfsdk:"name"`
+ Tags types.List `tfsdk:"tags"`
+ Wait types.Bool `tfsdk:"wait"`
+}
+
+func NewCreateSnapshot() action.Action {
+ return &CreateSnapshot{}
+}
+
+func (c *CreateSnapshot) Schema(_ context.Context, _ action.SchemaRequest, resp *action.SchemaResponse) {
+ resp.Schema = schema.Schema{
+ Attributes: map[string]schema.Attribute{
+ "volume_id": schema.StringAttribute{
+ Required: true,
+ Description: "ID of the volume to snapshot",
+ },
+ "zone": schema.StringAttribute{
+ Optional: true,
+ Description: "Zone of the volume to snapshot",
+ },
+ "name": schema.StringAttribute{
+ Optional: true,
+ Description: "Name of the snapshot",
+ },
+ "tags": schema.ListAttribute{
+ Optional: true,
+ ElementType: basetypes.StringType{},
+ Description: "List of tags associated with the snapshot",
+ },
+ "wait": schema.BoolAttribute{
+ Optional: true,
+ Description: "Wait for snapshotting operation to be completed",
+ },
+ },
+ }
+}
+
+func (c *CreateSnapshot) Invoke(ctx context.Context, req action.InvokeRequest, resp *action.InvokeResponse) {
+ var data CreateSnapshotModel
+ // Read action config data into the model
+ resp.Diagnostics.Append(req.Config.Get(ctx, &data)...)
+
+ if resp.Diagnostics.HasError() {
+ return
+ }
+
+ if c.blockAndInstanceAPI == nil {
+ resp.Diagnostics.AddError(
+ "Unconfigured instanceAPI / blockAPI",
+ "The action was not properly configured. The Scaleway client is missing. "+
+ "This is usually a bug in the provider. Please report it to the maintainers.",
+ )
+
+ return
+ }
+
+ zone, volumeID, _ := locality.ParseLocalizedID(data.VolumeID.ValueString())
+ if zone == "" {
+ if !data.Zone.IsNull() {
+ zone = data.Zone.ValueString()
+ } else {
+ resp.Diagnostics.AddError(
+ "missing zone in config",
+ fmt.Sprintf("zone could not be extracted from either the action configuration or the resource ID (%s)",
+ data.VolumeID.ValueString(),
+ ),
+ )
+
+ return
+ }
+ }
+
+ volume, err := c.blockAndInstanceAPI.GetUnknownVolume(&instancehelpers.GetUnknownVolumeRequest{
+ VolumeID: volumeID,
+ Zone: scw.Zone(zone),
+ }, scw.WithContext(ctx))
+ if err != nil {
+ resp.Diagnostics.AddError(
+ "could not find volume "+data.VolumeID.ValueString(),
+ err.Error(),
+ )
+
+ return
+ }
+
+ switch volume.InstanceVolumeType {
+ case instance.VolumeVolumeTypeLSSD:
+ actionReq := &instance.CreateSnapshotRequest{
+ VolumeID: &volumeID,
+ Zone: scw.Zone(zone),
+ }
+
+ if !data.Name.IsNull() {
+ actionReq.Name = data.Name.ValueString()
+ }
+
+ if len(data.Tags.Elements()) > 0 {
+ tags := make([]string, 0, len(data.Tags.Elements()))
+
+ diags := data.Tags.ElementsAs(ctx, &tags, false)
+ if diags.HasError() {
+ resp.Diagnostics.Append(diags...)
+ } else {
+ actionReq.Tags = &tags
+ }
+ }
+
+ snapshot, err := c.blockAndInstanceAPI.CreateSnapshot(actionReq, scw.WithContext(ctx))
+ if err != nil {
+ resp.Diagnostics.AddError(
+ "error creating instance snapshot",
+ err.Error())
+
+ return
+ }
+
+ if data.Wait.ValueBool() {
+ _, errWait := c.blockAndInstanceAPI.WaitForSnapshot(&instance.WaitForSnapshotRequest{
+ SnapshotID: snapshot.Snapshot.ID,
+ Zone: scw.Zone(zone),
+ }, scw.WithContext(ctx))
+ if errWait != nil {
+ resp.Diagnostics.AddError(
+ "error waiting for instance snapshot",
+ err.Error())
+ }
+ }
+ case instance.VolumeVolumeTypeSbsVolume:
+ api := c.blockAndInstanceAPI.BlockAPI
+
+ actionReq := &block.CreateSnapshotRequest{
+ VolumeID: volumeID,
+ Zone: scw.Zone(zone),
+ }
+
+ if !data.Name.IsNull() {
+ actionReq.Name = data.Name.ValueString()
+ }
+
+ if len(data.Tags.Elements()) > 0 {
+ tags := make([]string, 0, len(data.Tags.Elements()))
+
+ diags := data.Tags.ElementsAs(ctx, &tags, false)
+ if diags.HasError() {
+ resp.Diagnostics.Append(diags...)
+ } else {
+ actionReq.Tags = tags
+ }
+ }
+
+ snapshot, err := api.CreateSnapshot(actionReq, scw.WithContext(ctx))
+ if err != nil {
+ resp.Diagnostics.AddError(
+ "error creating block snapshot",
+ err.Error())
+
+ return
+ }
+
+ if data.Wait.ValueBool() {
+ _, errWait := api.WaitForSnapshot(&block.WaitForSnapshotRequest{
+ SnapshotID: snapshot.ID,
+ Zone: scw.Zone(zone),
+ }, scw.WithContext(ctx))
+ if errWait != nil {
+ resp.Diagnostics.AddError(
+ "error waiting for block snapshot",
+ err.Error())
+ }
+ }
+ case instance.VolumeVolumeTypeScratch:
+ resp.Diagnostics.AddError(
+ "invalid volume type",
+ "cannot create snapshot from a volume of type scratch",
+ )
+ default:
+ resp.Diagnostics.AddError(
+ "invalid volume type",
+ fmt.Sprintf("unknown volume type %q", volume.InstanceVolumeType),
+ )
+ }
+}
diff --git a/internal/services/instance/action_create_snapshot_test.go b/internal/services/instance/action_create_snapshot_test.go
new file mode 100644
index 000000000..ab94020fe
--- /dev/null
+++ b/internal/services/instance/action_create_snapshot_test.go
@@ -0,0 +1,527 @@
+package instance_test
+
+import (
+ "fmt"
+ "reflect"
+ "regexp"
+ "testing"
+
+ "github.com/hashicorp/terraform-plugin-testing/helper/resource"
+ "github.com/hashicorp/terraform-plugin-testing/terraform"
+ blockSDK "github.com/scaleway/scaleway-sdk-go/api/block/v1alpha1"
+ instanceSDK "github.com/scaleway/scaleway-sdk-go/api/instance/v1"
+ "github.com/scaleway/scaleway-sdk-go/scw"
+ "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest"
+ "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/block"
+ blocktestfuncs "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/block/testfuncs"
+ "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/instance"
+ instancechecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/instance/testfuncs"
+)
+
+type snapshotSpecsCheck struct {
+ Name *string
+ Size *scw.Size
+ Type *instanceSDK.VolumeVolumeType
+ Tags []string
+}
+
+func TestAccAction_InstanceCreateSnapshot_Local(t *testing.T) {
+ if acctest.IsRunningOpenTofu() {
+ t.Skip("Skipping TestAccAction_InstanceCreateSnapshot_Local because action are not yet supported on OpenTofu")
+ }
+
+ tt := acctest.NewTestTools(t)
+ defer tt.Cleanup()
+
+ localVolumeType := instanceSDK.VolumeVolumeTypeLSSD
+
+ resource.ParallelTest(t, resource.TestCase{
+ ProtoV6ProviderFactories: tt.ProviderFactories,
+ CheckDestroy: resource.ComposeTestCheckFunc(
+ instancechecks.IsServerDestroyed(tt),
+ destroyUntrackedInstanceSnapshots(tt, "data.scaleway_instance_volume.main"),
+ ),
+ Steps: []resource.TestStep{
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_instance_server" "main" {
+ name = "test-tf-action-instance-create-snapshot-local"
+ type = "DEV1-S"
+ image = "ubuntu_jammy"
+
+ root_volume {
+ volume_type = "%s"
+ size_in_gb = 20
+ }
+
+ lifecycle {
+ action_trigger {
+ events = [after_create]
+ actions = [action.scaleway_instance_create_snapshot.main]
+ }
+ }
+ }
+
+ data "scaleway_instance_volume" "main" {
+ volume_id = scaleway_instance_server.main.root_volume.0.volume_id
+ }
+
+ action "scaleway_instance_create_snapshot" "main" {
+ config {
+ volume_id = scaleway_instance_server.main.root_volume.0.volume_id
+ wait = true
+ }
+ }`, localVolumeType),
+ },
+ {
+ RefreshState: true,
+ Check: resource.ComposeTestCheckFunc(
+ instancechecks.IsVolumePresent(tt, "data.scaleway_instance_volume.main"),
+ checkInstanceSnapshot(tt, "data.scaleway_instance_volume.main", snapshotSpecsCheck{
+ Size: scw.SizePtr(20 * scw.GB),
+ Type: &localVolumeType,
+ }),
+ ),
+ },
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_instance_server" "main" {
+ name = "test-tf-action-instance-create-snapshot-local"
+ type = "DEV1-S"
+ image = "ubuntu_jammy"
+ tags = [ "add", "tags", "to", "trigger", "update" ]
+
+ root_volume {
+ volume_type = "%s"
+ size_in_gb = 20
+ }
+
+ lifecycle {
+ action_trigger {
+ events = [after_update]
+ actions = [action.scaleway_instance_create_snapshot.main]
+ }
+ }
+ }
+
+ data "scaleway_instance_volume" "main" {
+ volume_id = scaleway_instance_server.main.root_volume.0.volume_id
+ }
+
+ action "scaleway_instance_create_snapshot" "main" {
+ config {
+ volume_id = scaleway_instance_server.main.root_volume.0.volume_id
+ tags = scaleway_instance_server.main.tags
+ name = "custom-name-for-snapshot"
+ wait = true
+ }
+ }`, localVolumeType),
+ },
+ {
+ RefreshState: true,
+ Check: resource.ComposeTestCheckFunc(
+ instancechecks.IsVolumePresent(tt, "data.scaleway_instance_volume.main"),
+ checkInstanceSnapshot(tt, "data.scaleway_instance_volume.main", snapshotSpecsCheck{
+ Name: scw.StringPtr("custom-name-for-snapshot"),
+ Size: scw.SizePtr(20 * scw.GB),
+ Tags: []string{"add", "tags", "to", "trigger", "update"},
+ Type: &localVolumeType,
+ }),
+ ),
+ },
+ },
+ })
+}
+
+func TestAccAction_InstanceCreateSnapshot_SBS(t *testing.T) {
+ if acctest.IsRunningOpenTofu() {
+ t.Skip("Skipping TestAccAction_InstanceCreateSnapshot_SBS because action are not yet supported on OpenTofu")
+ }
+
+ tt := acctest.NewTestTools(t)
+ defer tt.Cleanup()
+
+ sbsVolumeType := instanceSDK.VolumeVolumeTypeSbsVolume
+
+ resource.ParallelTest(t, resource.TestCase{
+ ProtoV6ProviderFactories: tt.ProviderFactories,
+ CheckDestroy: resource.ComposeTestCheckFunc(
+ instancechecks.IsServerDestroyed(tt),
+ destroyUntrackedBlockSnapshots(tt, "data.scaleway_block_volume.main"),
+ ),
+ Steps: []resource.TestStep{
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_instance_server" "main" {
+ name = "test-tf-action-instance-create-snapshot-sbs"
+ type = "DEV1-S"
+ image = "ubuntu_jammy"
+
+ root_volume {
+ volume_type = "%s"
+ size_in_gb = 20
+ }
+
+ lifecycle {
+ action_trigger {
+ events = [after_create]
+ actions = [action.scaleway_instance_create_snapshot.main]
+ }
+ }
+ }
+
+ data "scaleway_block_volume" "main" {
+ volume_id = scaleway_instance_server.main.root_volume.0.volume_id
+ }
+
+ action "scaleway_instance_create_snapshot" "main" {
+ config {
+ volume_id = scaleway_instance_server.main.root_volume.0.volume_id
+ wait = true
+ }
+ }`, sbsVolumeType),
+ },
+ {
+ RefreshState: true,
+ Check: resource.ComposeTestCheckFunc(
+ blocktestfuncs.IsVolumePresent(tt, "data.scaleway_block_volume.main"),
+ checkBlockSnapshot(tt, "data.scaleway_block_volume.main", snapshotSpecsCheck{
+ Size: scw.SizePtr(20 * scw.GB),
+ Type: &sbsVolumeType,
+ }),
+ ),
+ },
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_instance_server" "main" {
+ name = "test-tf-action-instance-create-snapshot-sbs"
+ type = "DEV1-S"
+ image = "ubuntu_jammy"
+ tags = [ "add", "tags", "to", "trigger", "update" ]
+
+ root_volume {
+ volume_type = "%s"
+ size_in_gb = 20
+ }
+
+ lifecycle {
+ action_trigger {
+ events = [after_update]
+ actions = [action.scaleway_instance_create_snapshot.main]
+ }
+ }
+ }
+
+ data "scaleway_block_volume" "main" {
+ volume_id = scaleway_instance_server.main.root_volume.0.volume_id
+ }
+
+ action "scaleway_instance_create_snapshot" "main" {
+ config {
+ volume_id = scaleway_instance_server.main.root_volume.0.volume_id
+ tags = scaleway_instance_server.main.tags
+ name = "custom-name-for-snapshot"
+ wait = true
+ }
+ }`, sbsVolumeType),
+ },
+ {
+ RefreshState: true,
+ Check: resource.ComposeTestCheckFunc(
+ blocktestfuncs.IsVolumePresent(tt, "data.scaleway_block_volume.main"),
+ checkBlockSnapshot(tt, "data.scaleway_block_volume.main", snapshotSpecsCheck{
+ Name: scw.StringPtr("custom-name-for-snapshot"),
+ Size: scw.SizePtr(20 * scw.GB),
+ Tags: []string{"add", "tags", "to", "trigger", "update"},
+ }),
+ ),
+ },
+ },
+ })
+}
+
+func TestAccAction_InstanceCreateSnapshot_Scratch(t *testing.T) {
+ if acctest.IsRunningOpenTofu() {
+ t.Skip("Skipping TestAccAction_InstanceCreateSnapshot_Scratch because action are not yet supported on OpenTofu")
+ }
+
+ tt := acctest.NewTestTools(t)
+ defer tt.Cleanup()
+
+ scratchVolumeType := instanceSDK.VolumeVolumeTypeScratch
+
+ resource.ParallelTest(t, resource.TestCase{
+ ProtoV6ProviderFactories: tt.ProviderFactories,
+ CheckDestroy: instancechecks.IsServerDestroyed(tt),
+ Steps: []resource.TestStep{
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_instance_volume" "scratch" {
+ name = "test-tf-action-instance-create-snapshot-scratch"
+ type = "%s"
+ size_in_gb = 50
+
+ lifecycle {
+ action_trigger {
+ events = [after_create]
+ actions = [action.scaleway_instance_create_snapshot.scratch]
+ }
+ }
+ }
+
+ action "scaleway_instance_create_snapshot" "scratch" {
+ config {
+ volume_id = scaleway_instance_volume.scratch.id
+ wait = true
+ }
+ }`, scratchVolumeType),
+ ExpectError: regexp.MustCompile("Error when invoking action"), // scratch storage cannot be snapshot
+ },
+ },
+ })
+}
+
+func TestAccAction_InstanceCreateSnapshot_Zone(t *testing.T) {
+ if acctest.IsRunningOpenTofu() {
+ t.Skip("Skipping TestAccAction_InstanceCreateSnapshot_Zone because action are not yet supported on OpenTofu")
+ }
+
+ tt := acctest.NewTestTools(t)
+ defer tt.Cleanup()
+
+ localVolumeType := instanceSDK.VolumeVolumeTypeLSSD
+
+ resource.ParallelTest(t, resource.TestCase{
+ ProtoV6ProviderFactories: tt.ProviderFactories,
+ CheckDestroy: resource.ComposeTestCheckFunc(
+ instancechecks.IsServerDestroyed(tt),
+ destroyUntrackedInstanceSnapshots(tt, "data.scaleway_instance_volume.main"),
+ ),
+ Steps: []resource.TestStep{
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_instance_server" "main" {
+ name = "test-tf-action-instance-create-snapshot-zone"
+ type = "DEV1-S"
+ image = "ubuntu_jammy"
+ zone = "fr-par-2"
+
+ root_volume {
+ volume_type = "%s"
+ size_in_gb = 20
+ }
+
+ lifecycle {
+ action_trigger {
+ events = [after_create]
+ actions = [action.scaleway_instance_create_snapshot.main]
+ }
+ }
+ }
+
+ data "scaleway_instance_volume" "main" {
+ volume_id = scaleway_instance_server.main.root_volume.0.volume_id
+ zone = "fr-par-2"
+ }
+
+ action "scaleway_instance_create_snapshot" "main" {
+ config {
+ volume_id = scaleway_instance_server.main.root_volume.0.volume_id
+ wait = true
+ }
+ }`, localVolumeType),
+ },
+ {
+ RefreshState: true,
+ Check: resource.ComposeTestCheckFunc(
+ instancechecks.IsVolumePresent(tt, "data.scaleway_instance_volume.main"),
+ resource.TestCheckResourceAttr("scaleway_instance_server.main", "zone", "fr-par-2"),
+ checkInstanceSnapshot(tt, "data.scaleway_instance_volume.main", snapshotSpecsCheck{
+ Size: scw.SizePtr(20 * scw.GB),
+ Type: &localVolumeType,
+ }),
+ ),
+ },
+ },
+ })
+}
+
+func instanceSnapshotMatchesExpectedSpecs(snapshot instanceSDK.Snapshot, expected snapshotSpecsCheck) bool {
+ if expected.Name != nil && *expected.Name != snapshot.Name {
+ return false
+ }
+
+ if expected.Size != nil && *expected.Size != snapshot.Size {
+ return false
+ }
+
+ if len(expected.Tags) > 0 && !reflect.DeepEqual(expected.Tags, snapshot.Tags) {
+ return false
+ }
+
+ if len(snapshot.Tags) > len(expected.Tags) {
+ return false
+ }
+
+ if expected.Type != nil && *expected.Type != snapshot.VolumeType {
+ return false
+ }
+
+ return true
+}
+
+func checkInstanceSnapshot(tt *acctest.TestTools, n string, expectedSpecs snapshotSpecsCheck) resource.TestCheckFunc {
+ return func(state *terraform.State) error {
+ rs, ok := state.RootModule().Resources[n]
+ if !ok {
+ return fmt.Errorf("resource not found: %s", n)
+ }
+
+ api, zone, id, err := instance.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID)
+ if err != nil {
+ return err
+ }
+
+ snapshots, err := api.ListSnapshots(&instanceSDK.ListSnapshotsRequest{
+ Zone: zone,
+ BaseVolumeID: &id,
+ }, scw.WithAllPages())
+ if err != nil {
+ return err
+ }
+
+ if snapshots.TotalCount == 0 {
+ return fmt.Errorf("could not find any instance snapshot for volume %s", id)
+ }
+
+ for _, snapshot := range snapshots.Snapshots {
+ if instanceSnapshotMatchesExpectedSpecs(*snapshot, expectedSpecs) {
+ return nil
+ }
+ }
+
+ return fmt.Errorf("could not find any instance snapshot that matches the specs %+v", expectedSpecs)
+ }
+}
+
+func destroyUntrackedInstanceSnapshots(tt *acctest.TestTools, n string) resource.TestCheckFunc {
+ return func(state *terraform.State) error {
+ rs, ok := state.RootModule().Resources[n]
+ if !ok {
+ return fmt.Errorf("resource not found: %s", n)
+ }
+
+ api, zone, id, err := instance.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID)
+ if err != nil {
+ return err
+ }
+
+ snapshots, err := api.ListSnapshots(&instanceSDK.ListSnapshotsRequest{
+ Zone: zone,
+ BaseVolumeID: &id,
+ }, scw.WithAllPages())
+ if err != nil {
+ return err
+ }
+
+ for _, snapshot := range snapshots.Snapshots {
+ err = api.DeleteSnapshot(&instanceSDK.DeleteSnapshotRequest{
+ Zone: zone,
+ SnapshotID: snapshot.ID,
+ })
+ if err != nil {
+ return err
+ }
+ }
+
+ return nil
+ }
+}
+
+func blockSnapshotMatchesExpectedSpecs(snapshot blockSDK.Snapshot, expected snapshotSpecsCheck) bool {
+ if expected.Name != nil && *expected.Name != snapshot.Name {
+ return false
+ }
+
+ if expected.Size != nil && *expected.Size != snapshot.Size {
+ return false
+ }
+
+ if len(expected.Tags) > 0 && !reflect.DeepEqual(expected.Tags, snapshot.Tags) {
+ return false
+ }
+
+ if len(snapshot.Tags) > len(expected.Tags) {
+ return false
+ }
+
+ return true
+}
+
+func checkBlockSnapshot(tt *acctest.TestTools, n string, expectedSpecs snapshotSpecsCheck) resource.TestCheckFunc {
+ return func(state *terraform.State) error {
+ rs, ok := state.RootModule().Resources[n]
+ if !ok {
+ return fmt.Errorf("resource not found: %s", n)
+ }
+
+ api, zone, id, err := block.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID)
+ if err != nil {
+ return err
+ }
+
+ snapshots, err := api.ListSnapshots(&blockSDK.ListSnapshotsRequest{
+ Zone: zone,
+ VolumeID: &id,
+ }, scw.WithAllPages())
+ if err != nil {
+ return err
+ }
+
+ if snapshots.TotalCount == 0 {
+ return fmt.Errorf("could not find any block snapshot for volume %s", id)
+ }
+
+ for _, snapshot := range snapshots.Snapshots {
+ if blockSnapshotMatchesExpectedSpecs(*snapshot, expectedSpecs) {
+ return nil
+ }
+ }
+
+ return fmt.Errorf("could not find any block snapshot that matches the specs %+v", expectedSpecs)
+ }
+}
+
+func destroyUntrackedBlockSnapshots(tt *acctest.TestTools, n string) resource.TestCheckFunc {
+ return func(state *terraform.State) error {
+ rs, ok := state.RootModule().Resources[n]
+ if !ok {
+ return fmt.Errorf("resource not found: %s", n)
+ }
+
+ api, zone, id, err := block.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID)
+ if err != nil {
+ return err
+ }
+
+ snapshots, err := api.ListSnapshots(&blockSDK.ListSnapshotsRequest{
+ Zone: zone,
+ VolumeID: &id,
+ }, scw.WithAllPages())
+ if err != nil {
+ return err
+ }
+
+ for _, snapshot := range snapshots.Snapshots {
+ err = api.DeleteSnapshot(&blockSDK.DeleteSnapshotRequest{
+ Zone: zone,
+ SnapshotID: snapshot.ID,
+ })
+ if err != nil {
+ return err
+ }
+ }
+
+ return nil
+ }
+}
diff --git a/internal/services/instance/action_export_snapshot.go b/internal/services/instance/action_export_snapshot.go
new file mode 100644
index 000000000..ce9abf9f1
--- /dev/null
+++ b/internal/services/instance/action_export_snapshot.go
@@ -0,0 +1,208 @@
+package instance
+
+import (
+ "context"
+ "fmt"
+
+ "github.com/hashicorp/terraform-plugin-framework/action"
+ "github.com/hashicorp/terraform-plugin-framework/action/schema"
+ "github.com/hashicorp/terraform-plugin-framework/types"
+ block "github.com/scaleway/scaleway-sdk-go/api/block/v1alpha1"
+ "github.com/scaleway/scaleway-sdk-go/api/instance/v1"
+ "github.com/scaleway/scaleway-sdk-go/scw"
+ "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality"
+ "github.com/scaleway/terraform-provider-scaleway/v2/internal/meta"
+ "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/instance/instancehelpers"
+)
+
+var (
+ _ action.Action = (*ExportSnapshot)(nil)
+ _ action.ActionWithConfigure = (*ExportSnapshot)(nil)
+)
+
+type ExportSnapshot struct {
+ blockAndInstanceAPI *instancehelpers.BlockAndInstanceAPI
+}
+
+func (e *ExportSnapshot) Configure(_ context.Context, req action.ConfigureRequest, resp *action.ConfigureResponse) {
+ if req.ProviderData == nil {
+ return
+ }
+
+ m, ok := req.ProviderData.(*meta.Meta)
+ if !ok {
+ resp.Diagnostics.AddError(
+ "Unexpected Action Configure Type",
+ fmt.Sprintf("Expected *scw.Client, got: %T. Please report this issue to the provider developers.", req.ProviderData),
+ )
+
+ return
+ }
+
+ client := m.ScwClient()
+ e.blockAndInstanceAPI = instancehelpers.NewBlockAndInstanceAPI(client)
+}
+
+func (e *ExportSnapshot) Metadata(_ context.Context, req action.MetadataRequest, resp *action.MetadataResponse) {
+ resp.TypeName = req.ProviderTypeName + "_instance_export_snapshot"
+}
+
+type ExportSnapshotModel struct {
+ Zone types.String `tfsdk:"zone"`
+ SnapshotID types.String `tfsdk:"snapshot_id"`
+ Bucket types.String `tfsdk:"bucket"`
+ Key types.String `tfsdk:"key"`
+ Wait types.Bool `tfsdk:"wait"`
+}
+
+func NewExportSnapshot() action.Action {
+ return &ExportSnapshot{}
+}
+
+func (e *ExportSnapshot) Schema(_ context.Context, _ action.SchemaRequest, resp *action.SchemaResponse) {
+ resp.Schema = schema.Schema{
+ Attributes: map[string]schema.Attribute{
+ "snapshot_id": schema.StringAttribute{
+ Required: true,
+ Description: "ID of the snapshot to export",
+ },
+ "zone": schema.StringAttribute{
+ Optional: true,
+ Description: "Zone of the snapshot to export",
+ },
+ "bucket": schema.StringAttribute{
+ Required: true,
+ Description: "Name of the bucket to export the snapshot to",
+ },
+ "key": schema.StringAttribute{
+ Required: true,
+ Description: "Object key to save the snapshot to",
+ },
+ "wait": schema.BoolAttribute{
+ Optional: true,
+ Description: "Wait for exporting operation to be completed",
+ },
+ },
+ }
+}
+
+func (e *ExportSnapshot) Invoke(ctx context.Context, req action.InvokeRequest, resp *action.InvokeResponse) {
+ var data ExportSnapshotModel
+ // Read action config data into the model
+ resp.Diagnostics.Append(req.Config.Get(ctx, &data)...)
+
+ if resp.Diagnostics.HasError() {
+ return
+ }
+
+ if e.blockAndInstanceAPI == nil {
+ resp.Diagnostics.AddError(
+ "Unconfigured instanceAPI / block API",
+ "The action was not properly configured. The Scaleway client is missing. "+
+ "This is usually a bug in the provider. Please report it to the maintainers.",
+ )
+
+ return
+ }
+
+ zone, snapshotID, _ := locality.ParseLocalizedID(data.SnapshotID.ValueString())
+ if zone == "" {
+ if !data.Zone.IsNull() {
+ zone = data.Zone.ValueString()
+ } else {
+ resp.Diagnostics.AddError(
+ "missing zone in config",
+ fmt.Sprintf("zone could not be extracted from either the action configuration or the resource ID (%s)",
+ data.SnapshotID.ValueString(),
+ ),
+ )
+
+ return
+ }
+ }
+
+ snapshot, err := e.blockAndInstanceAPI.GetUnknownSnapshot(&instancehelpers.GetUnknownSnapshotRequest{
+ SnapshotID: snapshotID,
+ Zone: scw.Zone(zone),
+ }, scw.WithContext(ctx))
+ if err != nil {
+ resp.Diagnostics.AddError(
+ "could not find snapshot"+data.SnapshotID.ValueString(),
+ err.Error(),
+ )
+
+ return
+ }
+
+ switch snapshot.VolumeType {
+ case instance.VolumeVolumeTypeLSSD:
+ actionReq := &instance.ExportSnapshotRequest{
+ SnapshotID: snapshotID,
+ Zone: scw.Zone(zone),
+ Bucket: data.Bucket.ValueString(),
+ Key: data.Key.ValueString(),
+ }
+ if !data.Zone.IsNull() {
+ actionReq.Zone = scw.Zone(data.Zone.ValueString())
+ }
+
+ _, err = e.blockAndInstanceAPI.ExportSnapshot(actionReq, scw.WithContext(ctx))
+ if err != nil {
+ resp.Diagnostics.AddError(
+ "error exporting instance snapshot",
+ err.Error())
+
+ return
+ }
+
+ if data.Wait.ValueBool() {
+ _, err = e.blockAndInstanceAPI.WaitForSnapshot(&instance.WaitForSnapshotRequest{
+ SnapshotID: snapshotID,
+ Zone: scw.Zone(zone),
+ }, scw.WithContext(ctx))
+ if err != nil {
+ resp.Diagnostics.AddError(
+ "error waiting for instance snapshot",
+ err.Error())
+ }
+ }
+ case instance.VolumeVolumeTypeSbsSnapshot:
+ api := e.blockAndInstanceAPI.BlockAPI
+
+ actionReq := &block.ExportSnapshotToObjectStorageRequest{
+ SnapshotID: snapshotID,
+ Zone: scw.Zone(zone),
+ Bucket: data.Bucket.ValueString(),
+ Key: data.Key.ValueString(),
+ }
+ if !data.Zone.IsNull() {
+ actionReq.Zone = scw.Zone(data.Zone.ValueString())
+ }
+
+ _, err = api.ExportSnapshotToObjectStorage(actionReq, scw.WithContext(ctx))
+ if err != nil {
+ resp.Diagnostics.AddError(
+ "error exporting block snapshot",
+ err.Error())
+
+ return
+ }
+
+ if data.Wait.ValueBool() {
+ _, err = api.WaitForSnapshot(&block.WaitForSnapshotRequest{
+ SnapshotID: snapshotID,
+ Zone: scw.Zone(zone),
+ }, scw.WithContext(ctx))
+ if err != nil {
+ resp.Diagnostics.AddError(
+ "error waiting for block snapshot",
+ err.Error())
+ }
+ }
+ default:
+ resp.Diagnostics.AddError(
+ "invalid snapshot type",
+ fmt.Sprintf("unknown snapshot type %q", snapshot.VolumeType),
+ )
+ }
+}
diff --git a/internal/services/instance/action_export_snapshot_test.go b/internal/services/instance/action_export_snapshot_test.go
new file mode 100644
index 000000000..36b500dc0
--- /dev/null
+++ b/internal/services/instance/action_export_snapshot_test.go
@@ -0,0 +1,541 @@
+package instance_test
+
+import (
+ "context"
+ "fmt"
+ "strconv"
+ "testing"
+
+ "github.com/aws/aws-sdk-go-v2/service/s3"
+ sdkacctest "github.com/hashicorp/terraform-plugin-testing/helper/acctest"
+ "github.com/hashicorp/terraform-plugin-testing/helper/resource"
+ "github.com/hashicorp/terraform-plugin-testing/terraform"
+ instanceSDK "github.com/scaleway/scaleway-sdk-go/api/instance/v1"
+ "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest"
+ "github.com/scaleway/terraform-provider-scaleway/v2/internal/meta"
+ blocktestfuncs "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/block/testfuncs"
+ instancechecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/instance/testfuncs"
+ "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/object"
+ objectchecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/object/testfuncs"
+)
+
+const snapshotKey = "exported-snapshot.qcow2"
+
+func TestAccAction_InstanceExportSnapshot_Local(t *testing.T) {
+ if acctest.IsRunningOpenTofu() {
+ t.Skip("Skipping TestAccAction_InstanceExportSnapshot_Local because action are not yet supported on OpenTofu")
+ }
+
+ tt := acctest.NewTestTools(t)
+ defer tt.Cleanup()
+
+ var bucketName string
+ for {
+ bucketName = sdkacctest.RandomWithPrefix("test-acc-action-instance-export-snap-local")
+ if len(bucketName) < 63 {
+ break
+ }
+ }
+
+ size := 10
+
+ resource.ParallelTest(t, resource.TestCase{
+ ProtoV6ProviderFactories: tt.ProviderFactories,
+ CheckDestroy: resource.ComposeTestCheckFunc(
+ instancechecks.IsServerDestroyed(tt),
+ instancechecks.IsVolumeDestroyed(tt),
+ instancechecks.IsSnapshotDestroyed(tt),
+ objectchecks.IsObjectDestroyed(tt),
+ objectchecks.IsBucketDestroyed(tt),
+ ),
+ Steps: []resource.TestStep{
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_instance_server" "to_snapshot" {
+ name = "test-tf-action-instance-export-snap-local"
+ type = "DEV1-S"
+ image = "ubuntu_jammy"
+
+ root_volume {
+ volume_type = "l_ssd"
+ size_in_gb = %d
+ }
+ }
+
+ resource "scaleway_instance_snapshot" "main" {
+ volume_id = scaleway_instance_server.to_snapshot.root_volume.0.volume_id
+
+ lifecycle {
+ action_trigger {
+ events = [after_create]
+ actions = [action.scaleway_instance_export_snapshot.main]
+ }
+ }
+ }
+
+ resource "scaleway_object_bucket" "main" {
+ name = "%s"
+ }
+
+ action "scaleway_instance_export_snapshot" "main" {
+ config {
+ snapshot_id = scaleway_instance_snapshot.main.id
+ bucket = scaleway_object_bucket.main.name
+ key = %q
+ }
+ }`, size, bucketName, snapshotKey),
+ Check: resource.ComposeTestCheckFunc(
+ instancechecks.IsSnapshotPresent(tt, "scaleway_instance_snapshot.main"),
+ objectchecks.CheckBucketExists(tt, "scaleway_object_bucket.main", true),
+ ),
+ },
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_instance_server" "to_snapshot" {
+ name = "test-tf-action-instance-export-snap-local"
+ type = "DEV1-S"
+ image = "ubuntu_jammy"
+
+ root_volume {
+ volume_type = "l_ssd"
+ size_in_gb = %d
+ }
+ }
+
+ resource "scaleway_instance_snapshot" "main" {
+ volume_id = scaleway_instance_server.to_snapshot.root_volume.0.volume_id
+
+ lifecycle {
+ action_trigger {
+ events = [after_create]
+ actions = [action.scaleway_instance_export_snapshot.main]
+ }
+ }
+ }
+
+ resource "scaleway_object_bucket" "main" {
+ name = "%s"
+ }
+
+ data "scaleway_object" "qcow-object" {
+ bucket = scaleway_object_bucket.main.name
+ key = %[3]q
+ }
+
+ action "scaleway_instance_export_snapshot" "main" {
+ config {
+ snapshot_id = scaleway_instance_snapshot.main.id
+ bucket = scaleway_object_bucket.main.name
+ key = %[3]q
+ }
+ }`, size, bucketName, snapshotKey),
+ // The check on this step is the data source.
+ // If the snapshot does not exist, the data source will raise an error
+ },
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_object_bucket" "main" {
+ name = "%s"
+ }`, bucketName),
+ Check: destroyUntrackedObjects(t.Context(), tt.Meta, bucketName, "fr-par"),
+ },
+ },
+ })
+}
+
+func TestAccAction_InstanceExportSnapshot_SBS(t *testing.T) {
+ if acctest.IsRunningOpenTofu() {
+ t.Skip("Skipping TestAccAction_InstanceExportSnapshot_SBS because action are not yet supported on OpenTofu")
+ }
+
+ tt := acctest.NewTestTools(t)
+ defer tt.Cleanup()
+
+ var bucketName string
+ for {
+ bucketName = sdkacctest.RandomWithPrefix("test-acc-action-instance-export-snap-sbs")
+ if len(bucketName) < 63 {
+ break
+ }
+ }
+
+ size := 10
+
+ resource.ParallelTest(t, resource.TestCase{
+ ProtoV6ProviderFactories: tt.ProviderFactories,
+ CheckDestroy: resource.ComposeTestCheckFunc(
+ instancechecks.IsServerDestroyed(tt),
+ blocktestfuncs.IsVolumeDestroyed(tt),
+ blocktestfuncs.IsSnapshotDestroyed(tt),
+ objectchecks.IsObjectDestroyed(tt),
+ objectchecks.IsBucketDestroyed(tt),
+ ),
+ Steps: []resource.TestStep{
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_instance_server" "to_snapshot" {
+ name = "test-tf-action-instance-export-snap-sbs"
+ type = "DEV1-S"
+ image = "ubuntu_jammy"
+
+ root_volume {
+ size_in_gb = %d
+ }
+ }
+
+ resource "scaleway_block_snapshot" "main" {
+ volume_id = scaleway_instance_server.to_snapshot.root_volume.0.volume_id
+
+ lifecycle {
+ action_trigger {
+ events = [after_create]
+ actions = [action.scaleway_instance_export_snapshot.main]
+ }
+ }
+ }
+
+ resource "scaleway_object_bucket" "main" {
+ name = "%s"
+ }
+
+ action "scaleway_instance_export_snapshot" "main" {
+ config {
+ snapshot_id = scaleway_block_snapshot.main.id
+ bucket = scaleway_object_bucket.main.name
+ key = %q
+ }
+ }`, size, bucketName, snapshotKey),
+ Check: resource.ComposeTestCheckFunc(
+ blocktestfuncs.IsSnapshotPresent(tt, "scaleway_block_snapshot.main"),
+ objectchecks.CheckBucketExists(tt, "scaleway_object_bucket.main", true),
+ ),
+ },
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_instance_server" "to_snapshot" {
+ name = "test-tf-action-instance-export-snap-sbs"
+ type = "DEV1-S"
+ image = "ubuntu_jammy"
+
+ root_volume {
+ size_in_gb = %d
+ }
+ }
+
+ resource "scaleway_block_snapshot" "main" {
+ volume_id = scaleway_instance_server.to_snapshot.root_volume.0.volume_id
+
+ lifecycle {
+ action_trigger {
+ events = [after_create]
+ actions = [action.scaleway_instance_export_snapshot.main]
+ }
+ }
+ }
+
+ resource "scaleway_object_bucket" "main" {
+ name = "%s"
+ }
+
+ data "scaleway_object" "qcow-object" {
+ bucket = scaleway_object_bucket.main.name
+ key = %[3]q
+ }
+
+ action "scaleway_instance_export_snapshot" "main" {
+ config {
+ snapshot_id = scaleway_block_snapshot.main.id
+ bucket = scaleway_object_bucket.main.name
+ key = %[3]q
+ }
+ }`, size, bucketName, snapshotKey),
+ // The check on this step is the data source.
+ // If the snapshot does not exist, the data source will raise an error
+ },
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_object_bucket" "main" {
+ name = "%s"
+ }`, bucketName),
+ Check: destroyUntrackedObjects(t.Context(), tt.Meta, bucketName, "fr-par"),
+ },
+ },
+ })
+}
+
+func TestAccAction_InstanceExportSnapshot_Wait(t *testing.T) {
+ if acctest.IsRunningOpenTofu() {
+ t.Skip("Skipping TestAccAction_InstanceExportSnapshot_Wait because action are not yet supported on OpenTofu")
+ }
+
+ tt := acctest.NewTestTools(t)
+ defer tt.Cleanup()
+
+ var bucketName string
+ for {
+ bucketName = sdkacctest.RandomWithPrefix("test-acc-action-instance-export-snap-wait")
+ if len(bucketName) < 63 {
+ break
+ }
+ }
+
+ size := 10
+
+ resource.ParallelTest(t, resource.TestCase{
+ ProtoV6ProviderFactories: tt.ProviderFactories,
+ CheckDestroy: resource.ComposeTestCheckFunc(
+ instancechecks.IsServerDestroyed(tt),
+ instancechecks.IsVolumeDestroyed(tt),
+ instancechecks.IsSnapshotDestroyed(tt),
+ objectchecks.IsBucketDestroyed(tt),
+ ),
+ Steps: []resource.TestStep{
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_instance_server" "to_snapshot" {
+ name = "test-tf-action-instance-export-snapshot-wait"
+ type = "DEV1-S"
+ image = "ubuntu_jammy"
+
+ root_volume {
+ volume_type = "l_ssd"
+ size_in_gb = %d
+ }
+ }
+
+ resource "scaleway_instance_snapshot" "main" {
+ volume_id = scaleway_instance_server.to_snapshot.root_volume.0.volume_id
+
+ lifecycle {
+ action_trigger {
+ events = [after_create]
+ actions = [action.scaleway_instance_export_snapshot.main]
+ }
+ }
+ }
+
+ resource "scaleway_object_bucket" "main" {
+ name = "%s"
+ }
+
+ action "scaleway_instance_export_snapshot" "main" {
+ config {
+ snapshot_id = scaleway_instance_snapshot.main.id
+ bucket = scaleway_object_bucket.main.name
+ key = %q
+ wait = true
+ }
+ }`, size, bucketName, snapshotKey),
+ Check: resource.ComposeTestCheckFunc(
+ instancechecks.IsSnapshotPresent(tt, "scaleway_instance_snapshot.main"),
+ objectchecks.CheckBucketExists(tt, "scaleway_object_bucket.main", true),
+ ),
+ },
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_object_bucket" "main" {
+ name = "%s"
+ }
+
+ data "scaleway_object" "qcow-object" {
+ bucket = scaleway_object_bucket.main.name
+ key = %[2]q
+ }
+
+ resource "scaleway_instance_snapshot" "new_from_exported" {
+ import {
+ bucket = scaleway_object_bucket.main.name
+ key = %[2]q
+ }
+ }
+
+ resource "scaleway_instance_volume" "new_from_exported" {
+ from_snapshot_id = scaleway_instance_snapshot.new_from_exported.id
+ type = "l_ssd"
+ }
+
+ resource "scaleway_instance_server" "new_from_exported" {
+ name = "test-tf-action-instance-export-snapshot-new"
+ type = "DEV1-S"
+
+ root_volume {
+ volume_id = scaleway_instance_volume.new_from_exported.id
+ }
+ }`, bucketName, snapshotKey),
+ Check: resource.ComposeTestCheckFunc(
+ instancechecks.IsSnapshotPresent(tt, "scaleway_instance_snapshot.new_from_exported"),
+ instancechecks.IsVolumePresent(tt, "scaleway_instance_volume.new_from_exported"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.new_from_exported"),
+ resource.TestCheckResourceAttr("scaleway_instance_server.new_from_exported", "root_volume.0.size_in_gb", strconv.Itoa(size)),
+ readActualServerState(tt, "scaleway_instance_server.new_from_exported", instanceSDK.ServerStateRunning.String()),
+ ),
+ },
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_object_bucket" "main" {
+ name = "%s"
+ }`, bucketName),
+ Check: destroyUntrackedObjects(t.Context(), tt.Meta, bucketName, "fr-par"),
+ },
+ },
+ })
+}
+
+func TestAccAction_InstanceExportSnapshot_Zone(t *testing.T) {
+ if acctest.IsRunningOpenTofu() {
+ t.Skip("Skipping TestAccAction_InstanceExportSnapshot_Zone because action are not yet supported on OpenTofu")
+ }
+
+ tt := acctest.NewTestTools(t)
+ defer tt.Cleanup()
+
+ var bucketName string
+ for {
+ bucketName = sdkacctest.RandomWithPrefix("test-acc-action-instance-export-snap-zone")
+ if len(bucketName) < 63 {
+ break
+ }
+ }
+
+ size := 10
+
+ resource.ParallelTest(t, resource.TestCase{
+ ProtoV6ProviderFactories: tt.ProviderFactories,
+ CheckDestroy: resource.ComposeTestCheckFunc(
+ instancechecks.IsServerDestroyed(tt),
+ instancechecks.IsVolumeDestroyed(tt),
+ instancechecks.IsSnapshotDestroyed(tt),
+ objectchecks.IsObjectDestroyed(tt),
+ objectchecks.IsBucketDestroyed(tt),
+ ),
+ Steps: []resource.TestStep{
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_instance_server" "to_snapshot" {
+ name = "test-tf-action-instance-export-snapshot-zone"
+ type = "DEV1-S"
+ image = "ubuntu_jammy"
+ zone = "nl-ams-2"
+
+ root_volume {
+ volume_type = "l_ssd"
+ size_in_gb = %d
+ }
+ }
+
+ resource "scaleway_instance_snapshot" "main" {
+ volume_id = scaleway_instance_server.to_snapshot.root_volume.0.volume_id
+ zone = "nl-ams-2"
+
+ lifecycle {
+ action_trigger {
+ events = [after_create]
+ actions = [action.scaleway_instance_export_snapshot.main]
+ }
+ }
+ }
+
+ resource "scaleway_object_bucket" "main" {
+ name = "%s"
+ region = "nl-ams"
+ }
+
+ action "scaleway_instance_export_snapshot" "main" {
+ config {
+ snapshot_id = scaleway_instance_snapshot.main.id
+ bucket = scaleway_object_bucket.main.name
+ key = %q
+ }
+ }`, size, bucketName, snapshotKey),
+ Check: resource.ComposeTestCheckFunc(
+ instancechecks.IsSnapshotPresent(tt, "scaleway_instance_snapshot.main"),
+ objectchecks.CheckBucketExists(tt, "scaleway_object_bucket.main", true),
+ resource.TestCheckResourceAttr("scaleway_instance_server.to_snapshot", "zone", "nl-ams-2"),
+ ),
+ },
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_instance_server" "to_snapshot" {
+ name = "test-tf-action-instance-export-snapshot-zone"
+ type = "DEV1-S"
+ image = "ubuntu_jammy"
+ zone = "nl-ams-2"
+
+ root_volume {
+ volume_type = "l_ssd"
+ size_in_gb = %d
+ }
+ }
+
+ resource "scaleway_instance_snapshot" "main" {
+ volume_id = scaleway_instance_server.to_snapshot.root_volume.0.volume_id
+ zone = "nl-ams-2"
+
+ lifecycle {
+ action_trigger {
+ events = [after_create]
+ actions = [action.scaleway_instance_export_snapshot.main]
+ }
+ }
+ }
+
+ resource "scaleway_object_bucket" "main" {
+ name = "%s"
+ region = "nl-ams"
+ }
+
+ data "scaleway_object" "qcow-object" {
+ bucket = scaleway_object_bucket.main.name
+ key = %[3]q
+ region = "nl-ams"
+ }
+
+ action "scaleway_instance_export_snapshot" "main" {
+ config {
+ snapshot_id = scaleway_instance_snapshot.main.id
+ bucket = scaleway_object_bucket.main.name
+ key = %[3]q
+ }
+ }`, size, bucketName, snapshotKey),
+ // The check on this step is the data source.
+ // If the snapshot does not exist, the data source will raise an error
+ },
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_object_bucket" "main" {
+ name = "%s"
+ region = "nl-ams"
+ }`, bucketName),
+ Check: destroyUntrackedObjects(t.Context(), tt.Meta, bucketName, "nl-ams"),
+ },
+ },
+ })
+}
+
+func destroyUntrackedObjects(ctx context.Context, meta *meta.Meta, bucketName, region string) resource.TestCheckFunc {
+ return func(state *terraform.State) error {
+ s3Client, err := object.NewS3ClientFromMeta(ctx, meta, region)
+ if err != nil {
+ return err
+ }
+
+ objects, err := s3Client.ListObjects(ctx, &s3.ListObjectsInput{
+ Bucket: &bucketName,
+ })
+ if err != nil {
+ return err
+ }
+
+ for _, objectKey := range objects.Contents {
+ _, err = s3Client.DeleteObject(ctx, &s3.DeleteObjectInput{
+ Bucket: &bucketName,
+ Key: objectKey.Key,
+ })
+ if err != nil {
+ return err
+ }
+ }
+
+ return nil
+ }
+}
diff --git a/internal/services/instance/action_server_action.go b/internal/services/instance/action_server_action.go
index dcc1dc089..03d92e7af 100644
--- a/internal/services/instance/action_server_action.go
+++ b/internal/services/instance/action_server_action.go
@@ -110,36 +110,60 @@ func (a *ServerAction) Invoke(ctx context.Context, req action.InvokeRequest, res
return
}
+ zone, serverID, _ := locality.ParseLocalizedID(data.ServerID.ValueString())
+ if zone == "" {
+ if !data.Zone.IsNull() {
+ zone = data.Zone.ValueString()
+ } else {
+ resp.Diagnostics.AddError(
+ "missing zone in config",
+ fmt.Sprintf("zone could not be extracted from either the action configuration or the resource ID (%s)",
+ data.ServerID.ValueString(),
+ ),
+ )
+
+ return
+ }
+ }
+
actionReq := &instance.ServerActionRequest{
- ServerID: locality.ExpandID(data.ServerID.ValueString()),
+ ServerID: serverID,
+ Zone: scw.Zone(zone),
Action: instance.ServerAction(data.Action.ValueString()),
}
- if !data.Zone.IsNull() {
- actionReq.Zone = scw.Zone(data.Zone.ValueString())
- }
- _, err := a.instanceAPI.ServerAction(actionReq)
+ _, err := a.instanceAPI.ServerAction(actionReq, scw.WithContext(ctx))
if err != nil {
resp.Diagnostics.AddError(
"error in server action",
- fmt.Sprintf("%s", err))
+ err.Error())
+
+ return
}
if data.Wait.ValueBool() {
- waitReq := &instance.WaitForServerRequest{
- ServerID: locality.ExpandID(data.ServerID.ValueString()),
- Zone: scw.Zone(data.Zone.ValueString()),
- }
-
- if !data.Zone.IsNull() {
- waitReq.Zone = scw.Zone(data.Zone.ValueString())
+ server, err := a.instanceAPI.WaitForServer(&instance.WaitForServerRequest{
+ ServerID: serverID,
+ Zone: scw.Zone(zone),
+ }, scw.WithContext(ctx))
+ if err != nil && data.Action.ValueString() != instance.ServerActionTerminate.String() {
+ resp.Diagnostics.AddError(
+ "error waiting for server"+serverID,
+ err.Error())
}
- _, errWait := a.instanceAPI.WaitForServer(waitReq)
- if errWait != nil {
- resp.Diagnostics.AddError(
- "error in wait server",
- fmt.Sprintf("%s", err))
+ if data.Action.ValueString() == instance.ServerActionBackup.String() && server != nil {
+ for _, volume := range server.Volumes {
+ _, err := a.instanceAPI.WaitForVolume(&instance.WaitForVolumeRequest{
+ VolumeID: volume.ID,
+ Zone: scw.Zone(zone),
+ }, scw.WithContext(ctx))
+ if err != nil {
+ resp.Diagnostics.AddError(
+ "error waiting for volume "+volume.ID,
+ err.Error())
+ }
+ }
}
}
}
diff --git a/internal/services/instance/action_server_action_test.go b/internal/services/instance/action_server_action_test.go
index f0a879107..5192da6b7 100644
--- a/internal/services/instance/action_server_action_test.go
+++ b/internal/services/instance/action_server_action_test.go
@@ -2,15 +2,25 @@ package instance_test
import (
"errors"
+ "fmt"
"regexp"
"strings"
"testing"
"github.com/hashicorp/terraform-plugin-testing/helper/resource"
"github.com/hashicorp/terraform-plugin-testing/terraform"
+ instanceSDK "github.com/scaleway/scaleway-sdk-go/api/instance/v1"
+ "github.com/scaleway/scaleway-sdk-go/scw"
"github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest"
+ "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/instance"
+ instancechecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/instance/testfuncs"
)
+type imageSpecsCheck struct {
+ RootVolumeSize *scw.Size
+ RootVolumeType *instanceSDK.VolumeVolumeType
+}
+
func TestAccActionServer_Basic(t *testing.T) {
if acctest.IsRunningOpenTofu() {
t.Skip("Skipping TestAccActionServer_Basic because action are not yet supported on OpenTofu")
@@ -21,11 +31,12 @@ func TestAccActionServer_Basic(t *testing.T) {
resource.ParallelTest(t, resource.TestCase{
ProtoV6ProviderFactories: tt.ProviderFactories,
+ CheckDestroy: instancechecks.IsServerDestroyed(tt),
Steps: []resource.TestStep{
{
Config: `
resource "scaleway_instance_server" "main" {
- name = "test-terraform-datasource-private-nic"
+ name = "test-terraform-action-server-basic"
type = "DEV1-S"
image = "ubuntu_jammy"
@@ -47,7 +58,7 @@ func TestAccActionServer_Basic(t *testing.T) {
{
Config: `
resource "scaleway_instance_server" "main" {
- name = "test-terraform-datasource-private-nic"
+ name = "test-terraform-action-server-basic"
type = "DEV1-S"
image = "ubuntu_jammy"
@@ -99,7 +110,7 @@ func TestAccActionServer_Basic(t *testing.T) {
func TestAccActionServer_UnknownVerb(t *testing.T) {
if acctest.IsRunningOpenTofu() {
- t.Skip("Skipping TestAccActionServer_Basic because action are not yet supported on OpenTofu")
+ t.Skip("Skipping TestAccActionServer_UnknownVerb because action are not yet supported on OpenTofu")
}
tt := acctest.NewTestTools(t)
@@ -122,3 +133,372 @@ func TestAccActionServer_UnknownVerb(t *testing.T) {
},
})
}
+
+func TestAccActionServer_On_Off(t *testing.T) {
+ if acctest.IsRunningOpenTofu() {
+ t.Skip("Skipping TestAccActionServer_On_Off because action are not yet supported on OpenTofu")
+ }
+
+ tt := acctest.NewTestTools(t)
+ defer tt.Cleanup()
+
+ resource.ParallelTest(t, resource.TestCase{
+ ProtoV6ProviderFactories: tt.ProviderFactories,
+ CheckDestroy: instancechecks.IsServerDestroyed(tt),
+ Steps: []resource.TestStep{
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_instance_server" "main" {
+ name = "test-terraform-action-server-on-off"
+ type = "DEV1-S"
+ image = "ubuntu_jammy"
+
+ lifecycle {
+ action_trigger {
+ events = [after_create]
+ actions = [action.scaleway_instance_server_action.stop]
+ }
+ }
+ }
+
+ action "scaleway_instance_server_action" "stop" {
+ config {
+ action = "%s"
+ server_id = scaleway_instance_server.main.id
+ wait = true
+ }
+ }`, instanceSDK.ServerActionStopInPlace),
+ },
+ {
+ RefreshState: true,
+ Check: resource.ComposeTestCheckFunc(
+ resource.TestCheckResourceAttr("scaleway_instance_server.main", "state", instance.InstanceServerStateStandby),
+ readActualServerState(tt, "scaleway_instance_server.main", instanceSDK.ServerStateStoppedInPlace.String()),
+ ),
+ },
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_instance_server" "main" {
+ name = "should-be-powered-off"
+ type = "DEV1-S"
+ image = "ubuntu_jammy"
+
+ lifecycle {
+ action_trigger {
+ events = [after_update]
+ actions = [action.scaleway_instance_server_action.poweroff]
+ }
+ }
+ }
+
+ action "scaleway_instance_server_action" "poweroff" {
+ config {
+ action = "%s"
+ server_id = scaleway_instance_server.main.id
+ wait = true
+ }
+ }`, instanceSDK.ServerActionPoweroff),
+ },
+ {
+ RefreshState: true,
+ Check: resource.ComposeTestCheckFunc(
+ resource.TestCheckResourceAttr("scaleway_instance_server.main", "state", instance.InstanceServerStateStopped),
+ readActualServerState(tt, "scaleway_instance_server.main", instanceSDK.ServerStateStopped.String()),
+ ),
+ },
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_instance_server" "main" {
+ name = "should-be-started"
+ type = "DEV1-S"
+ image = "ubuntu_jammy"
+
+ lifecycle {
+ action_trigger {
+ events = [after_update]
+ actions = [action.scaleway_instance_server_action.start]
+ }
+ }
+ }
+
+ action "scaleway_instance_server_action" "start" {
+ config {
+ action = "%s"
+ server_id = scaleway_instance_server.main.id
+ wait = true
+ }
+ }`, instanceSDK.ServerActionPoweron),
+ },
+ {
+ RefreshState: true,
+ Check: resource.ComposeTestCheckFunc(
+ resource.TestCheckResourceAttr("scaleway_instance_server.main", "state", instance.InstanceServerStateStarted),
+ readActualServerState(tt, "scaleway_instance_server.main", instanceSDK.ServerStateRunning.String()),
+ ),
+ },
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_instance_server" "main" {
+ name = "should-be-terminated"
+ type = "DEV1-S"
+ image = "ubuntu_jammy"
+
+ lifecycle {
+ action_trigger {
+ events = [after_update]
+ actions = [action.scaleway_instance_server_action.terminate]
+ }
+ }
+ }
+
+ action "scaleway_instance_server_action" "terminate" {
+ config {
+ action = "%s"
+ server_id = scaleway_instance_server.main.id
+ wait = false
+ }
+ }`, instanceSDK.ServerActionTerminate),
+ ExpectNonEmptyPlan: true,
+ },
+ {
+ RefreshState: true,
+ Check: instancechecks.IsServerDestroyed(tt),
+ ExpectNonEmptyPlan: true,
+ },
+ },
+ })
+}
+
+func TestAccActionServer_Backup(t *testing.T) {
+ if acctest.IsRunningOpenTofu() {
+ t.Skip("Skipping TestAccActionServer_Backup because action are not yet supported on OpenTofu")
+ }
+
+ tt := acctest.NewTestTools(t)
+ defer tt.Cleanup()
+
+ rootVolumeType := instanceSDK.VolumeVolumeTypeLSSD
+ rootVolumeSize := 15
+
+ resource.ParallelTest(t, resource.TestCase{
+ ProtoV6ProviderFactories: tt.ProviderFactories,
+ CheckDestroy: resource.ComposeTestCheckFunc(
+ instancechecks.IsServerDestroyed(tt),
+ destroyUntrackedImagesAndSnapshots(tt, "scaleway_instance_server.main"),
+ ),
+ Steps: []resource.TestStep{
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_instance_server" "main" {
+ name = "test-terraform-action-server-backup"
+ type = "DEV1-S"
+ image = "ubuntu_jammy"
+
+ root_volume {
+ volume_type = "%s"
+ size_in_gb = %d
+ }
+
+ lifecycle {
+ action_trigger {
+ events = [after_create]
+ actions = [action.scaleway_instance_server_action.backup]
+ }
+ }
+ }
+
+ action "scaleway_instance_server_action" "backup" {
+ config {
+ action = "%s"
+ server_id = scaleway_instance_server.main.id
+ wait = true
+ }
+ }`, rootVolumeType, rootVolumeSize, instanceSDK.ServerActionBackup),
+ },
+ {
+ RefreshState: true,
+ Check: resource.ComposeTestCheckFunc(
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.main"),
+ checkImage(tt, "scaleway_instance_server.main", imageSpecsCheck{
+ RootVolumeSize: scw.SizePtr(scw.Size(uint64(rootVolumeSize)) * scw.GB),
+ RootVolumeType: &rootVolumeType,
+ }),
+ ),
+ },
+ },
+ })
+}
+
+func TestAccActionServer_Zone(t *testing.T) {
+ if acctest.IsRunningOpenTofu() {
+ t.Skip("Skipping TestAccActionServer_Zone because action are not yet supported on OpenTofu")
+ }
+
+ tt := acctest.NewTestTools(t)
+ defer tt.Cleanup()
+
+ resource.ParallelTest(t, resource.TestCase{
+ ProtoV6ProviderFactories: tt.ProviderFactories,
+ CheckDestroy: instancechecks.IsServerDestroyed(tt),
+ Steps: []resource.TestStep{
+ {
+ Config: fmt.Sprintf(`
+ resource "scaleway_instance_server" "main" {
+ name = "test-terraform-action-server-zone"
+ type = "DEV1-S"
+ image = "ubuntu_jammy"
+ zone = "pl-waw-1"
+
+ lifecycle {
+ action_trigger {
+ events = [after_create]
+ actions = [action.scaleway_instance_server_action.stop]
+ }
+ }
+ }
+
+ action "scaleway_instance_server_action" "stop" {
+ config {
+ action = "%s"
+ server_id = scaleway_instance_server.main.id
+ wait = true
+ }
+ }`, instanceSDK.ServerActionStopInPlace),
+ },
+ {
+ RefreshState: true,
+ Check: resource.ComposeTestCheckFunc(
+ resource.TestCheckResourceAttr("scaleway_instance_server.main", "zone", "pl-waw-1"),
+ resource.TestCheckResourceAttr("scaleway_instance_server.main", "state", instance.InstanceServerStateStandby),
+ readActualServerState(tt, "scaleway_instance_server.main", instanceSDK.ServerStateStoppedInPlace.String()),
+ ),
+ },
+ },
+ })
+}
+
+func readActualServerState(tt *acctest.TestTools, n string, expectedState string) resource.TestCheckFunc {
+ return func(state *terraform.State) error {
+ rs, ok := state.RootModule().Resources[n]
+ if !ok {
+ return fmt.Errorf("resource not found: %s", n)
+ }
+
+ api, zone, id, err := instance.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID)
+ if err != nil {
+ return err
+ }
+
+ server, err := api.GetServer(&instanceSDK.GetServerRequest{
+ Zone: zone,
+ ServerID: id,
+ })
+ if err != nil {
+ return err
+ }
+
+ if server.Server.State.String() != expectedState {
+ return fmt.Errorf("expected server state to be %q, got %q", expectedState, server.Server.State)
+ }
+
+ return nil
+ }
+}
+
+func checkImage(tt *acctest.TestTools, serverTFName string, expectedSpecs imageSpecsCheck) resource.TestCheckFunc {
+ return func(state *terraform.State) error {
+ rs, ok := state.RootModule().Resources[serverTFName]
+ if !ok {
+ return fmt.Errorf("resource not found: %s", serverTFName)
+ }
+
+ api, zone, _, err := instance.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID)
+ if err != nil {
+ return err
+ }
+
+ serverName := rs.Primary.Attributes["name"]
+ imageNamePrefix := "image_" + serverName
+
+ images, err := api.ListImages(&instanceSDK.ListImagesRequest{
+ Zone: zone,
+ Name: &imageNamePrefix,
+ }, scw.WithAllPages())
+ if err != nil {
+ return err
+ }
+
+ if images.TotalCount == 0 {
+ return fmt.Errorf("could not find any image for server %s", serverName)
+ } else if images.TotalCount > 1 {
+ return fmt.Errorf("found multiple images for server %s", serverName)
+ }
+
+ image := images.Images[0]
+
+ if expectedSpecs.RootVolumeSize != nil && *expectedSpecs.RootVolumeSize != image.RootVolume.Size {
+ return fmt.Errorf("expected root volume size to be %d, got %d", expectedSpecs.RootVolumeSize, image.RootVolume.Size)
+ }
+
+ if expectedSpecs.RootVolumeType != nil && *expectedSpecs.RootVolumeType != image.RootVolume.VolumeType {
+ return fmt.Errorf("expected root volume type to be %s, got %s", expectedSpecs.RootVolumeType, image.RootVolume.VolumeType)
+ }
+
+ return nil
+ }
+}
+
+func destroyUntrackedImagesAndSnapshots(tt *acctest.TestTools, serverTFName string) resource.TestCheckFunc {
+ return func(state *terraform.State) error {
+ rs, ok := state.RootModule().Resources[serverTFName]
+ if !ok {
+ return fmt.Errorf("resource not found: %s", serverTFName)
+ }
+
+ api, zone, _, err := instance.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID)
+ if err != nil {
+ return err
+ }
+
+ serverName := rs.Primary.Attributes["name"]
+ imageNamePrefix := "image_" + serverName
+
+ images, err := api.ListImages(&instanceSDK.ListImagesRequest{
+ Zone: zone,
+ Name: &imageNamePrefix,
+ }, scw.WithAllPages())
+ if err != nil {
+ return err
+ }
+
+ for _, image := range images.Images {
+ err = api.DeleteImage(&instanceSDK.DeleteImageRequest{
+ Zone: zone,
+ ImageID: image.ID,
+ })
+ if err != nil {
+ return err
+ }
+
+ err = api.DeleteSnapshot(&instanceSDK.DeleteSnapshotRequest{
+ Zone: zone,
+ SnapshotID: image.RootVolume.ID,
+ })
+ if err != nil {
+ return err
+ }
+
+ for _, extraVolume := range image.ExtraVolumes {
+ err = api.DeleteSnapshot(&instanceSDK.DeleteSnapshotRequest{
+ Zone: zone,
+ SnapshotID: extraVolume.ID,
+ })
+ if err != nil {
+ return err
+ }
+ }
+ }
+
+ return nil
+ }
+}
diff --git a/internal/services/instance/helpers_instance.go b/internal/services/instance/helpers_instance.go
index 33bfaa9c6..c59f365fc 100644
--- a/internal/services/instance/helpers_instance.go
+++ b/internal/services/instance/helpers_instance.go
@@ -135,6 +135,10 @@ func serverStateFlatten(fromState instance.ServerState) (string, error) {
// serverStateExpand converts terraform state to an API state or return an error.
func serverStateExpand(rawState string) (instance.ServerState, error) {
+ if rawState == "" {
+ return instance.ServerStateRunning, nil
+ }
+
apiState, exist := map[string]instance.ServerState{
InstanceServerStateStopped: instance.ServerStateStopped,
InstanceServerStateStandby: instance.ServerStateStoppedInPlace,
diff --git a/internal/services/instance/image_test.go b/internal/services/instance/image_test.go
index 30642e211..8e12ba109 100644
--- a/internal/services/instance/image_test.go
+++ b/internal/services/instance/image_test.go
@@ -25,7 +25,7 @@ func TestAccImage_BlockVolume(t *testing.T) {
ProtoV6ProviderFactories: tt.ProviderFactories,
CheckDestroy: resource.ComposeTestCheckFunc(
isImageDestroyed(tt),
- isSnapshotDestroyed(tt),
+ instancechecks.IsSnapshotDestroyed(tt),
instancechecks.IsVolumeDestroyed(tt),
),
Steps: []resource.TestStep{
@@ -51,7 +51,7 @@ func TestAccImage_BlockVolume(t *testing.T) {
`,
Check: resource.ComposeTestCheckFunc(
instancechecks.IsVolumePresent(tt, "scaleway_instance_volume.main"),
- isSnapshotPresent(tt, "scaleway_instance_snapshot.main"),
+ instancechecks.IsSnapshotPresent(tt, "scaleway_instance_snapshot.main"),
instancechecks.DoesImageExists(tt, "scaleway_instance_image.main"),
resource.TestCheckResourceAttr("scaleway_instance_image.main", "name", "test_image_basic"),
resource.TestCheckResourceAttrPair("scaleway_instance_image.main", "root_volume_id", "scaleway_instance_snapshot.main", "id"),
@@ -93,7 +93,7 @@ func TestAccImage_BlockVolume(t *testing.T) {
`,
Check: resource.ComposeTestCheckFunc(
instancechecks.IsVolumePresent(tt, "scaleway_instance_volume.main"),
- isSnapshotPresent(tt, "scaleway_instance_snapshot.main"),
+ instancechecks.IsSnapshotPresent(tt, "scaleway_instance_snapshot.main"),
instancechecks.DoesImageExists(tt, "scaleway_instance_image.main"),
resource.TestCheckResourceAttr("scaleway_instance_image.main", "name", "test_image_renamed"),
resource.TestCheckResourceAttrPair("scaleway_instance_image.main", "root_volume_id", "scaleway_instance_snapshot.main", "id"),
@@ -121,7 +121,7 @@ func TestAccImage_ExternalBlockVolume(t *testing.T) {
ProtoV6ProviderFactories: tt.ProviderFactories,
CheckDestroy: resource.ComposeTestCheckFunc(
isImageDestroyed(tt),
- isSnapshotDestroyed(tt),
+ instancechecks.IsSnapshotDestroyed(tt),
instancechecks.IsVolumeDestroyed(tt),
),
Steps: []resource.TestStep{
@@ -240,7 +240,7 @@ func TestAccImage_Server(t *testing.T) {
}
`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.main"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.main"),
blocktestfuncs.IsSnapshotPresent(tt, "scaleway_block_snapshot.main"),
instancechecks.DoesImageExists(tt, "scaleway_instance_image.main"),
resource.TestCheckResourceAttrPair("scaleway_instance_image.main", "root_volume_id", "scaleway_block_snapshot.main", "id"),
@@ -267,7 +267,7 @@ func TestAccImage_Server(t *testing.T) {
}
`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.main"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.main"),
blocktestfuncs.IsSnapshotPresent(tt, "scaleway_block_snapshot.main"),
instancechecks.DoesImageExists(tt, "scaleway_instance_image.main"),
resource.TestCheckResourceAttrPair("scaleway_instance_image.main", "root_volume_id", "scaleway_block_snapshot.main", "id"),
@@ -293,7 +293,7 @@ func TestAccImage_ServerWithBlockVolume(t *testing.T) {
ProtoV6ProviderFactories: tt.ProviderFactories,
CheckDestroy: resource.ComposeTestCheckFunc(
isImageDestroyed(tt),
- isSnapshotDestroyed(tt),
+ instancechecks.IsSnapshotDestroyed(tt),
instancechecks.IsVolumeDestroyed(tt),
instancechecks.IsServerDestroyed(tt),
),
@@ -319,8 +319,8 @@ func TestAccImage_ServerWithBlockVolume(t *testing.T) {
`,
Check: resource.ComposeTestCheckFunc(
instancechecks.IsVolumePresent(tt, "scaleway_instance_volume.block01"),
- isServerPresent(tt, "scaleway_instance_server.server"),
- isSnapshotPresent(tt, "scaleway_instance_snapshot.block01"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.server"),
+ instancechecks.IsSnapshotPresent(tt, "scaleway_instance_snapshot.block01"),
),
},
@@ -360,9 +360,9 @@ func TestAccImage_ServerWithBlockVolume(t *testing.T) {
`,
Check: resource.ComposeTestCheckFunc(
instancechecks.IsVolumePresent(tt, "scaleway_instance_volume.block01"),
- isServerPresent(tt, "scaleway_instance_server.server"),
- isSnapshotPresent(tt, "scaleway_instance_snapshot.block01"),
- isSnapshotPresent(tt, "scaleway_instance_snapshot.server"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.server"),
+ instancechecks.IsSnapshotPresent(tt, "scaleway_instance_snapshot.block01"),
+ instancechecks.IsSnapshotPresent(tt, "scaleway_instance_snapshot.server"),
instancechecks.DoesImageExists(tt, "scaleway_instance_image.main"),
resource.TestCheckResourceAttrPair("scaleway_instance_image.main", "root_volume_id", "scaleway_instance_snapshot.server", "id"),
resource.TestCheckResourceAttrPair("scaleway_instance_image.main", "additional_volumes.0.id", "scaleway_instance_snapshot.block01", "id"),
@@ -419,10 +419,10 @@ func TestAccImage_ServerWithBlockVolume(t *testing.T) {
Check: resource.ComposeTestCheckFunc(
instancechecks.IsVolumePresent(tt, "scaleway_instance_volume.block01"),
instancechecks.IsVolumePresent(tt, "scaleway_instance_volume.block02"),
- isServerPresent(tt, "scaleway_instance_server.server"),
- isSnapshotPresent(tt, "scaleway_instance_snapshot.block01"),
- isSnapshotPresent(tt, "scaleway_instance_snapshot.block02"),
- isSnapshotPresent(tt, "scaleway_instance_snapshot.server"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.server"),
+ instancechecks.IsSnapshotPresent(tt, "scaleway_instance_snapshot.block01"),
+ instancechecks.IsSnapshotPresent(tt, "scaleway_instance_snapshot.block02"),
+ instancechecks.IsSnapshotPresent(tt, "scaleway_instance_snapshot.server"),
instancechecks.DoesImageExists(tt, "scaleway_instance_image.main"),
resource.TestCheckResourceAttrPair("scaleway_instance_image.main", "root_volume_id", "scaleway_instance_snapshot.server", "id"),
resource.TestCheckResourceAttrPair("scaleway_instance_image.main", "additional_volumes.0.id", "scaleway_instance_snapshot.block02", "id"),
@@ -445,7 +445,7 @@ func TestAccImage_ServerWithLocalVolume(t *testing.T) {
ProtoV6ProviderFactories: tt.ProviderFactories,
CheckDestroy: resource.ComposeTestCheckFunc(
isImageDestroyed(tt),
- isSnapshotDestroyed(tt),
+ instancechecks.IsSnapshotDestroyed(tt),
instancechecks.IsVolumeDestroyed(tt),
instancechecks.IsServerDestroyed(tt),
),
@@ -488,12 +488,12 @@ func TestAccImage_ServerWithLocalVolume(t *testing.T) {
}
`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.server01"),
- isServerPresent(tt, "scaleway_instance_server.server02"),
- isServerPresent(tt, "scaleway_instance_server.server03"),
- isSnapshotPresent(tt, "scaleway_instance_snapshot.local01"),
- isSnapshotPresent(tt, "scaleway_instance_snapshot.local02"),
- isSnapshotPresent(tt, "scaleway_instance_snapshot.local03"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.server01"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.server02"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.server03"),
+ instancechecks.IsSnapshotPresent(tt, "scaleway_instance_snapshot.local01"),
+ instancechecks.IsSnapshotPresent(tt, "scaleway_instance_snapshot.local02"),
+ instancechecks.IsSnapshotPresent(tt, "scaleway_instance_snapshot.local03"),
),
},
{
@@ -545,9 +545,9 @@ func TestAccImage_ServerWithLocalVolume(t *testing.T) {
}
`,
Check: resource.ComposeTestCheckFunc(
- isSnapshotPresent(tt, "scaleway_instance_snapshot.local01"),
- isSnapshotPresent(tt, "scaleway_instance_snapshot.local02"),
- isSnapshotPresent(tt, "scaleway_instance_snapshot.local03"),
+ instancechecks.IsSnapshotPresent(tt, "scaleway_instance_snapshot.local01"),
+ instancechecks.IsSnapshotPresent(tt, "scaleway_instance_snapshot.local02"),
+ instancechecks.IsSnapshotPresent(tt, "scaleway_instance_snapshot.local03"),
instancechecks.DoesImageExists(tt, "scaleway_instance_image.main"),
resource.TestCheckResourceAttrPair("scaleway_instance_image.main", "root_volume_id", "scaleway_instance_snapshot.local01", "id"),
resource.TestCheckResourceAttrPair("scaleway_instance_image.main", "root_volume.0.id", "scaleway_instance_snapshot.local01", "id"),
@@ -598,7 +598,7 @@ func TestAccImage_ServerWithSBSVolume(t *testing.T) {
`,
Check: resource.ComposeTestCheckFunc(
blocktestfuncs.IsVolumePresent(tt, "scaleway_block_volume.block01"),
- isServerPresent(tt, "scaleway_instance_server.server"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.server"),
blocktestfuncs.IsSnapshotPresent(tt, "scaleway_block_snapshot.block01"),
),
},
@@ -636,7 +636,7 @@ func TestAccImage_ServerWithSBSVolume(t *testing.T) {
`,
Check: resource.ComposeTestCheckFunc(
blocktestfuncs.IsVolumePresent(tt, "scaleway_block_volume.block01"),
- isServerPresent(tt, "scaleway_instance_server.server"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.server"),
blocktestfuncs.IsSnapshotPresent(tt, "scaleway_block_snapshot.block01"),
blocktestfuncs.IsSnapshotPresent(tt, "scaleway_block_snapshot.server"),
instancechecks.DoesImageExists(tt, "scaleway_instance_image.main"),
@@ -691,7 +691,7 @@ func TestAccImage_ServerWithSBSVolume(t *testing.T) {
Check: resource.ComposeTestCheckFunc(
blocktestfuncs.IsVolumePresent(tt, "scaleway_block_volume.block01"),
blocktestfuncs.IsVolumePresent(tt, "scaleway_block_volume.block02"),
- isServerPresent(tt, "scaleway_instance_server.server"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.server"),
blocktestfuncs.IsSnapshotPresent(tt, "scaleway_block_snapshot.block01"),
blocktestfuncs.IsSnapshotPresent(tt, "scaleway_block_snapshot.block02"),
blocktestfuncs.IsSnapshotPresent(tt, "scaleway_block_snapshot.server"),
diff --git a/internal/services/instance/server.go b/internal/services/instance/server.go
index e654d1829..21e0a0fb1 100644
--- a/internal/services/instance/server.go
+++ b/internal/services/instance/server.go
@@ -255,7 +255,7 @@ func serverSchema() map[string]*schema.Schema {
"state": {
Type: schema.TypeString,
Optional: true,
- Default: InstanceServerStateStarted,
+ Computed: true,
Description: "The state of the server should be: started, stopped, standby",
ValidateFunc: validation.StringInSlice([]string{
InstanceServerStateStarted,
diff --git a/internal/services/instance/server_data_source_test.go b/internal/services/instance/server_data_source_test.go
index 91a264590..9cab829f6 100644
--- a/internal/services/instance/server_data_source_test.go
+++ b/internal/services/instance/server_data_source_test.go
@@ -46,9 +46,9 @@ func TestAccDataSourceServer_Basic(t *testing.T) {
server_id = "${scaleway_instance_server.main.id}"
}`, serverName),
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "data.scaleway_instance_server.prod"),
+ instancechecks.IsServerPresent(tt, "data.scaleway_instance_server.prod"),
resource.TestCheckResourceAttr("data.scaleway_instance_server.prod", "name", serverName),
- isServerPresent(tt, "data.scaleway_instance_server.stg"),
+ instancechecks.IsServerPresent(tt, "data.scaleway_instance_server.stg"),
resource.TestCheckResourceAttr("data.scaleway_instance_server.stg", "name", serverName),
),
},
diff --git a/internal/services/instance/server_test.go b/internal/services/instance/server_test.go
index e4cc0942f..7d9b2325c 100644
--- a/internal/services/instance/server_test.go
+++ b/internal/services/instance/server_test.go
@@ -45,7 +45,7 @@ func TestAccServer_Minimal1(t *testing.T) {
tags = [ "terraform-test", "scaleway_instance_server", "minimal" ]
}`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "image", "ubuntu_focal"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "type", "DEV1-S"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.delete_on_termination", "true"),
@@ -68,7 +68,7 @@ func TestAccServer_Minimal1(t *testing.T) {
tags = [ "terraform-test", "scaleway_instance_server", "minimal" ]
}`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "image", "ubuntu_focal"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "type", "DEV1-S"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.delete_on_termination", "true"),
@@ -99,7 +99,7 @@ func TestAccServer_Minimal2(t *testing.T) {
type = "DEV1-S"
}`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "image", "ubuntu_focal"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "type", "DEV1-S"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.delete_on_termination", "true"),
@@ -119,7 +119,7 @@ func TestAccServer_Minimal2(t *testing.T) {
}
}`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.main"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.main"),
resource.TestCheckResourceAttr("scaleway_instance_server.main", "image", "ubuntu_focal"),
resource.TestCheckResourceAttr("scaleway_instance_server.main", "type", "DEV1-S"),
resource.TestCheckResourceAttr("scaleway_instance_server.main", "root_volume.0.delete_on_termination", "true"),
@@ -140,7 +140,7 @@ func TestAccServer_Minimal2(t *testing.T) {
}
}`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.main2"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.main2"),
resource.TestCheckResourceAttr("scaleway_instance_server.main2", "image", "ubuntu_focal"),
resource.TestCheckResourceAttr("scaleway_instance_server.main2", "type", "DEV1-S"),
resource.TestCheckResourceAttr("scaleway_instance_server.main2", "root_volume.0.delete_on_termination", "true"),
@@ -178,7 +178,7 @@ func TestAccServer_RootVolumeFromImage(t *testing.T) {
tags = [ "terraform-test", "scaleway_instance_server", "root_volume_from_image" ]
}`, image),
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.size_in_gb", "10"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.volume_type", "l_ssd"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.name", "named-volume"),
@@ -198,7 +198,7 @@ func TestAccServer_RootVolumeFromImage(t *testing.T) {
tags = [ "terraform-test", "scaleway_instance_server", "root_volume_from_image" ]
}`, image),
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.volume_type", "l_ssd"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.size_in_gb", "10"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.name", "renamed"),
@@ -218,7 +218,7 @@ func TestAccServer_RootVolumeFromImage(t *testing.T) {
tags = [ "terraform-test", "scaleway_instance_server", "root_volume_from_image" ]
}`, image),
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
serverHasNewVolume(tt, "scaleway_instance_server.base", image),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.size_in_gb", "20"),
resource.TestCheckResourceAttrSet("scaleway_instance_server.base", "root_volume.0.name"),
@@ -254,7 +254,7 @@ func TestAccServer_RootVolumeFromID(t *testing.T) {
tags = [ "terraform-test", "scaleway_instance_server", "root_volume_from_id" ]
}`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.size_in_gb", "10"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.volume_type", "l_ssd"),
resource.TestCheckResourceAttrSet("scaleway_instance_server.base", "root_volume.0.name"),
@@ -281,7 +281,7 @@ func TestAccServer_RootVolumeFromID(t *testing.T) {
{
RefreshState: true,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.size_in_gb", "10"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.volume_type", "l_ssd"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.name", "named-volume"), // New volume name should be readable from root_volume attribute after refreshing the state
@@ -317,7 +317,7 @@ func TestAccServer_RootVolume_Boot(t *testing.T) {
tags = [ "terraform-test", "scaleway_instance_server", "root_volume" ]
}`, image),
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.boot", "true"),
serverHasNewVolume(tt, "scaleway_instance_server.base", "ubuntu_focal"),
),
@@ -335,7 +335,7 @@ func TestAccServer_RootVolume_Boot(t *testing.T) {
tags = [ "terraform-test", "scaleway_instance_server", "root_volume" ]
}`, image),
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.boot", "false"),
serverHasNewVolume(tt, "scaleway_instance_server.base", "ubuntu_focal"),
),
@@ -373,7 +373,7 @@ func TestAccServer_RootVolume_ID(t *testing.T) {
tags = [ "terraform-test", "scaleway_instance_server", "root_volume" ]
}`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttrPair("scaleway_instance_server.base", "root_volume.0.volume_id", "scaleway_instance_volume.server_volume", "id"),
resource.TestCheckResourceAttrPair("scaleway_instance_server.base", "root_volume.0.size_in_gb", "scaleway_instance_volume.server_volume", "size_in_gb"),
),
@@ -406,7 +406,7 @@ func TestAccServer_Basic(t *testing.T) {
tags = [ "terraform-test", "scaleway_instance_server", "basic" ]
}`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "type", "DEV1-M"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "name", "test"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.0", "terraform-test"),
@@ -431,7 +431,7 @@ func TestAccServer_Basic(t *testing.T) {
tags = [ "terraform-test", "scaleway_instance_server", "basic" ]
}`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "type", "DEV1-S"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "name", "test"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.0", "terraform-test"),
@@ -466,7 +466,7 @@ func TestAccServer_State1(t *testing.T) {
tags = [ "terraform-test", "scaleway_instance_server", "state" ]
}`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "state", "started"),
),
},
@@ -485,7 +485,7 @@ func TestAccServer_State1(t *testing.T) {
tags = [ "terraform-test", "scaleway_instance_server", "state" ]
}`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "state", "standby"),
),
},
@@ -504,7 +504,7 @@ func TestAccServer_State1(t *testing.T) {
tags = [ "terraform-test", "scaleway_instance_server", "state" ]
}`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "state", "stopped"),
),
},
@@ -535,7 +535,7 @@ func TestAccServer_State2(t *testing.T) {
tags = [ "terraform-test", "scaleway_instance_server", "state" ]
}`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "state", "stopped"),
),
},
@@ -554,7 +554,7 @@ func TestAccServer_State2(t *testing.T) {
tags = [ "terraform-test", "scaleway_instance_server", "state" ]
}`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "state", "standby"),
),
},
@@ -586,7 +586,7 @@ EOF
}
}`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "user_data.foo", "bar"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "user_data.cloud-init", "#cloud-config\napt_update: true\napt_upgrade: true\n"),
),
@@ -615,7 +615,7 @@ func TestAccServer_UserData_WithoutCloudInitAtStart(t *testing.T) {
tags = [ "terraform-test", "scaleway_instance_server", "user_data" ]
}`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "user_data.%", "0"),
),
},
@@ -638,7 +638,7 @@ EOF
}
}`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "user_data.cloud-init", "#cloud-config\napt_update: true\napt_upgrade: true\n"),
),
},
@@ -680,7 +680,7 @@ func TestAccServer_AdditionalVolumes(t *testing.T) {
}
`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.size_in_gb", "10"),
),
},
@@ -715,7 +715,7 @@ func TestAccServer_AdditionalVolumes(t *testing.T) {
`,
Check: resource.ComposeTestCheckFunc(
instancechecks.IsVolumePresent(tt, "scaleway_instance_volume.block"),
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_volume.block", "size_in_gb", "10"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.size_in_gb", "10"),
),
@@ -817,9 +817,9 @@ func TestAccServer_WithPlacementGroup(t *testing.T) {
tags = [ "terraform-test", "scaleway_instance_server", "placement_group", "${count.index}" ]
}`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.ha.0"),
- isServerPresent(tt, "scaleway_instance_server.ha.1"),
- isServerPresent(tt, "scaleway_instance_server.ha.2"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.ha.0"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.ha.1"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.ha.2"),
isPlacementGroupPresent(tt, "scaleway_instance_placement_group.ha"),
resource.TestCheckResourceAttr("scaleway_instance_placement_group.ha", "policy_respected", "true"),
@@ -854,7 +854,7 @@ func TestAccServer_Ipv6(t *testing.T) {
}
`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.server01"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.server01"),
acctest.CheckResourceAttrIPv6("scaleway_instance_server.server01", "public_ips.0.address"),
),
},
@@ -866,7 +866,7 @@ func TestAccServer_Ipv6(t *testing.T) {
}
`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.server01"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.server01"),
resource.TestCheckResourceAttr("scaleway_instance_server.server01", "public_ips.#", "0"),
),
},
@@ -923,7 +923,7 @@ func TestAccServer_WithReservedIP(t *testing.T) {
}
`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttrPair("scaleway_instance_ip.first", "address", "scaleway_instance_server.base", "public_ips.0.address"),
resource.TestCheckResourceAttrPair("scaleway_instance_ip.first", "id", "scaleway_instance_server.base", "ip_id"),
),
@@ -940,7 +940,7 @@ func TestAccServer_WithReservedIP(t *testing.T) {
}
`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
isIPAttachedToServer(tt, "scaleway_instance_ip.second", "scaleway_instance_server.base"),
resource.TestCheckResourceAttrPair("scaleway_instance_ip.second", "address", "scaleway_instance_server.base", "public_ips.0.address"),
resource.TestCheckResourceAttrPair("scaleway_instance_ip.second", "id", "scaleway_instance_server.base", "ip_id"),
@@ -957,7 +957,7 @@ func TestAccServer_WithReservedIP(t *testing.T) {
}
`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
serverHasNoIPAssigned(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "public_ips.#", "0"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "ip_id", ""),
@@ -975,7 +975,7 @@ func TestAccServer_WithReservedIP(t *testing.T) {
}
`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
serverHasNoIPAssigned(tt, "scaleway_instance_server.base"),
acctest.CheckResourceAttrIPv4("scaleway_instance_server.base", "public_ips.0.address"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "ip_id", ""),
@@ -985,27 +985,6 @@ func TestAccServer_WithReservedIP(t *testing.T) {
})
}
-func isServerPresent(tt *acctest.TestTools, n string) resource.TestCheckFunc {
- return func(s *terraform.State) error {
- rs, ok := s.RootModule().Resources[n]
- if !ok {
- return fmt.Errorf("resource not found: %s", n)
- }
-
- instanceAPI, zone, ID, err := instance.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID)
- if err != nil {
- return err
- }
-
- _, err = instanceAPI.GetServer(&instanceSDK.GetServerRequest{ServerID: ID, Zone: zone})
- if err != nil {
- return err
- }
-
- return nil
- }
-}
-
func arePrivateNICsPresent(tt *acctest.TestTools, n string) resource.TestCheckFunc {
return func(s *terraform.State) error {
rs, ok := s.RootModule().Resources[n]
@@ -1093,7 +1072,7 @@ func TestAccServer_AlterTags(t *testing.T) {
}
`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.0", "front"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.1", "web"),
),
@@ -1108,7 +1087,7 @@ func TestAccServer_AlterTags(t *testing.T) {
}
`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.0", "front"),
),
},
@@ -1143,7 +1122,7 @@ func TestAccServer_WithDefaultRootVolumeAndAdditionalVolume(t *testing.T) {
}
`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.main"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.main"),
),
},
},
@@ -1181,7 +1160,7 @@ func TestAccServer_ServerWithBlockNonDefaultZone(t *testing.T) {
}
`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.main"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.main"),
),
},
},
@@ -1367,7 +1346,7 @@ func TestAccServer_PrivateNetwork(t *testing.T) {
type = "DEV1-S"
}`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "private_network.#", "0"),
),
},
@@ -1493,8 +1472,8 @@ func TestAccServer_CustomDiffImage(t *testing.T) {
}
`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.main"),
- isServerPresent(tt, "scaleway_instance_server.control"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.main"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.control"),
resource.TestCheckResourceAttr("scaleway_instance_server.main", "image", "ubuntu_jammy"),
resource.TestCheckResourceAttr("scaleway_instance_server.control", "image", "ubuntu_jammy"),
acctest.CheckResourceIDPersisted("scaleway_instance_server.main", &mainServerID),
@@ -1523,8 +1502,8 @@ func TestAccServer_CustomDiffImage(t *testing.T) {
}
`, marketplaceImageType),
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.main"),
- isServerPresent(tt, "scaleway_instance_server.control"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.main"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.control"),
resource.TestCheckResourceAttrPair("scaleway_instance_server.main", "image", "data.scaleway_marketplace_image.jammy", "id"),
resource.TestCheckResourceAttr("scaleway_instance_server.control", "image", "ubuntu_jammy"),
imageIDMatchLabel(tt, "scaleway_instance_server.main", "scaleway_instance_server.control", true),
@@ -1554,8 +1533,8 @@ func TestAccServer_CustomDiffImage(t *testing.T) {
}
`, marketplaceImageType),
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.main"),
- isServerPresent(tt, "scaleway_instance_server.control"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.main"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.control"),
resource.TestCheckResourceAttrPair("scaleway_instance_server.main", "image", "data.scaleway_marketplace_image.focal", "id"),
resource.TestCheckResourceAttr("scaleway_instance_server.control", "image", "ubuntu_jammy"),
imageIDMatchLabel(tt, "scaleway_instance_server.main", "scaleway_instance_server.control", false),
@@ -2284,7 +2263,7 @@ func TestAccServer_AttachDetachFileSystem(t *testing.T) {
}
}`, image),
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "type", "POP2-HM-2C-16G"),
resource.TestCheckResourceAttrSet("scaleway_instance_server.base", "filesystems.0.filesystem_id"),
serverHasNewVolume(tt, "scaleway_instance_server.base", image),
@@ -2316,7 +2295,7 @@ func TestAccServer_AttachDetachFileSystem(t *testing.T) {
}
}`, image),
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "type", "POP2-HM-2C-16G"),
resource.TestCheckResourceAttrSet("scaleway_instance_server.base", "filesystems.0.filesystem_id"),
resource.TestCheckNoResourceAttr("scaleway_instance_server.base", "filesystems.1.filesystem_id"),
@@ -2351,7 +2330,7 @@ func TestAccServer_AttachDetachFileSystem(t *testing.T) {
}
}`, image),
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "type", "POP2-HM-2C-16G"),
resource.TestCheckResourceAttrSet("scaleway_instance_server.base", "filesystems.0.filesystem_id"),
resource.TestCheckResourceAttrSet("scaleway_instance_server.base", "filesystems.1.filesystem_id"),
@@ -2389,7 +2368,7 @@ func TestAccServer_AttachDetachFileSystem(t *testing.T) {
}
}`, image),
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.base"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"),
resource.TestCheckResourceAttr("scaleway_instance_server.base", "type", "POP2-HM-2C-16G"),
resource.TestCheckResourceAttrSet("scaleway_instance_server.base", "filesystems.0.filesystem_id"),
resource.TestCheckNoResourceAttr("scaleway_instance_server.base", "filesystems.1.filesystem_id"),
@@ -2433,7 +2412,7 @@ func TestAccServer_ScratchStorage(t *testing.T) {
additional_volume_ids = [scaleway_instance_volume.main.id]
}`,
Check: resource.ComposeTestCheckFunc(
- isServerPresent(tt, "scaleway_instance_server.main"),
+ instancechecks.IsServerPresent(tt, "scaleway_instance_server.main"),
instancechecks.IsVolumePresent(tt, "scaleway_instance_volume.main"),
resource.TestCheckResourceAttr("scaleway_instance_server.main", "type", "H100-1-80G"),
resource.TestCheckResourceAttr("scaleway_instance_server.main", "image", "ubuntu_jammy_gpu_os_12"),
diff --git a/internal/services/instance/snapshot_data_source_test.go b/internal/services/instance/snapshot_data_source_test.go
index c5405db01..0521ca7a5 100644
--- a/internal/services/instance/snapshot_data_source_test.go
+++ b/internal/services/instance/snapshot_data_source_test.go
@@ -21,7 +21,7 @@ func TestAccDataSourceSnapshot_Basic(t *testing.T) {
ProtoV6ProviderFactories: tt.ProviderFactories,
CheckDestroy: resource.ComposeTestCheckFunc(
instancetestfuncs.IsVolumeDestroyed(tt),
- isSnapshotDestroyed(tt),
+ instancetestfuncs.IsSnapshotDestroyed(tt),
),
Steps: []resource.TestStep{
{
@@ -56,8 +56,8 @@ func TestAccDataSourceSnapshot_Basic(t *testing.T) {
name = scaleway_instance_snapshot.from_volume.name
}`, snapshotName),
Check: resource.ComposeTestCheckFunc(
- isSnapshotPresent(tt, "data.scaleway_instance_snapshot.by_id"),
- isSnapshotPresent(tt, "data.scaleway_instance_snapshot.by_name"),
+ instancetestfuncs.IsSnapshotPresent(tt, "data.scaleway_instance_snapshot.by_id"),
+ instancetestfuncs.IsSnapshotPresent(tt, "data.scaleway_instance_snapshot.by_name"),
resource.TestCheckResourceAttrPair("data.scaleway_instance_snapshot.by_id", "id", "scaleway_instance_snapshot.from_volume", "id"),
resource.TestCheckResourceAttrPair("data.scaleway_instance_snapshot.by_id", "name", "scaleway_instance_snapshot.from_volume", "name"),
diff --git a/internal/services/instance/snapshot_test.go b/internal/services/instance/snapshot_test.go
index 2ddae0469..9532801e7 100644
--- a/internal/services/instance/snapshot_test.go
+++ b/internal/services/instance/snapshot_test.go
@@ -6,11 +6,7 @@ import (
sdkacctest "github.com/hashicorp/terraform-plugin-testing/helper/acctest"
"github.com/hashicorp/terraform-plugin-testing/helper/resource"
- "github.com/hashicorp/terraform-plugin-testing/terraform"
- instanceSDK "github.com/scaleway/scaleway-sdk-go/api/instance/v1"
"github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest"
- "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors"
- "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/instance"
instancechecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/instance/testfuncs"
objectchecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/object/testfuncs"
)
@@ -37,7 +33,7 @@ func TestAccSnapshot_Server(t *testing.T) {
volume_id = scaleway_instance_server.main.root_volume.0.volume_id
}`,
Check: resource.ComposeTestCheckFunc(
- isSnapshotPresent(tt, "scaleway_instance_snapshot.main"),
+ instancechecks.IsSnapshotPresent(tt, "scaleway_instance_snapshot.main"),
),
},
},
@@ -52,7 +48,7 @@ func TestAccSnapshot_FromS3(t *testing.T) {
resource.ParallelTest(t, resource.TestCase{
ProtoV6ProviderFactories: tt.ProviderFactories,
CheckDestroy: resource.ComposeTestCheckFunc(
- isSnapshotDestroyed(tt),
+ instancechecks.IsSnapshotDestroyed(tt),
objectchecks.IsObjectDestroyed(tt),
objectchecks.IsBucketDestroyed(tt),
),
@@ -78,7 +74,7 @@ func TestAccSnapshot_FromS3(t *testing.T) {
}
`, bucketName),
Check: resource.ComposeTestCheckFunc(
- isSnapshotPresent(tt, "scaleway_instance_snapshot.qcow-instance-snapshot"),
+ instancechecks.IsSnapshotPresent(tt, "scaleway_instance_snapshot.qcow-instance-snapshot"),
acctest.CheckResourceAttrUUID("scaleway_instance_snapshot.qcow-instance-snapshot", "id"),
resource.TestCheckResourceAttr("scaleway_instance_snapshot.qcow-instance-snapshot", "name", "test-acc-snapshot-import-default"),
resource.TestCheckResourceAttr("scaleway_instance_snapshot.qcow-instance-snapshot", "type", "l_ssd"),
@@ -106,7 +102,7 @@ func TestAccSnapshot_FromS3(t *testing.T) {
}
`, bucketName),
Check: resource.ComposeTestCheckFunc(
- isSnapshotPresent(tt, "scaleway_instance_snapshot.qcow-instance-snapshot"),
+ instancechecks.IsSnapshotPresent(tt, "scaleway_instance_snapshot.qcow-instance-snapshot"),
acctest.CheckResourceAttrUUID("scaleway_instance_snapshot.qcow-instance-snapshot", "id"),
resource.TestCheckResourceAttr("scaleway_instance_snapshot.qcow-instance-snapshot", "name", "test-acc-snapshot-import-lssd"),
resource.TestCheckResourceAttr("scaleway_instance_snapshot.qcow-instance-snapshot", "type", "l_ssd"),
@@ -115,59 +111,3 @@ func TestAccSnapshot_FromS3(t *testing.T) {
},
})
}
-
-func isSnapshotPresent(tt *acctest.TestTools, n string) resource.TestCheckFunc {
- return func(s *terraform.State) error {
- rs, ok := s.RootModule().Resources[n]
- if !ok {
- return fmt.Errorf("resource not found: %s", n)
- }
-
- instanceAPI, zone, ID, err := instance.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID)
- if err != nil {
- return err
- }
-
- _, err = instanceAPI.GetSnapshot(&instanceSDK.GetSnapshotRequest{
- Zone: zone,
- SnapshotID: ID,
- })
- if err != nil {
- return err
- }
-
- return nil
- }
-}
-
-func isSnapshotDestroyed(tt *acctest.TestTools) resource.TestCheckFunc {
- return func(state *terraform.State) error {
- for _, rs := range state.RootModule().Resources {
- if rs.Type != "scaleway_instance_snapshot" {
- continue
- }
-
- instanceAPI, zone, ID, err := instance.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID)
- if err != nil {
- return err
- }
-
- _, err = instanceAPI.GetSnapshot(&instanceSDK.GetSnapshotRequest{
- SnapshotID: ID,
- Zone: zone,
- })
-
- // If no error resource still exist
- if err == nil {
- return fmt.Errorf("snapshot (%s) still exists", rs.Primary.ID)
- }
-
- // Unexpected api error we return it
- if !httperrors.Is404(err) {
- return err
- }
- }
-
- return nil
- }
-}
diff --git a/internal/services/instance/testdata/action-instance-create-snapshot-local.cassette.yaml b/internal/services/instance/testdata/action-instance-create-snapshot-local.cassette.yaml
new file mode 100644
index 000000000..7d321ada8
--- /dev/null
+++ b/internal/services/instance/testdata/action-instance-create-snapshot-local.cassette.yaml
@@ -0,0 +1,3153 @@
+---
+version: 2
+interactions:
+ - id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ page:
+ - "1"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 39202
+ body: '{"servers": {"BASIC2-A16C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.89, "hourly_price": 0.2067, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 201.19, "hourly_price": 0.2756, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A2C-4G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 16.79, "hourly_price": 0.023, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 25.19, "hourly_price": 0.0345, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 50.3, "hourly_price": 0.0689, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A4C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 37.74, "hourly_price": 0.0517, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A8C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.48, "hourly_price": 0.1034, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "BASIC2-A8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 100.59, "hourly_price": 0.1378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 30.66, "hourly_price": 0.042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.454, "hourly_price": 0.0198, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.424, "hourly_price": 0.0088, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 46.5734, "hourly_price": 0.06378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 554.07, "hourly_price": 0.759, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 274.48, "hourly_price": 0.376, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 136.51, "hourly_price": 0.187, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1197.93, "hourly_price": 1.641, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 66.43, "hourly_price": 0.091, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}}}'
+ headers:
+ Content-Length:
+ - "39202"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:37 GMT
+ Link:
+ - ; rel="next",; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 1bf3a2b5-f163-4fd0-b756-83c66607ee7f
+ X-Total-Count:
+ - "76"
+ status: 200 OK
+ code: 200
+ duration: 80.347318ms
+ - id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ page:
+ - "2"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20510
+ body: '{"servers": {"POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 891.33, "hourly_price": 1.221, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 0.1095, "hourly_price": 0.00015, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}'
+ headers:
+ Content-Length:
+ - "20510"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:37 GMT
+ Link:
+ - ; rel="first",; rel="previous",; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 328657ab-ef55-4d35-8fe6-3c05006b48c7
+ X-Total-Count:
+ - "76"
+ status: 200 OK
+ code: 200
+ duration: 74.309582ms
+ - id: 2
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ image_label:
+ - ubuntu_jammy
+ order_by:
+ - type_asc
+ type:
+ - instance_local
+ zone:
+ - fr-par-1
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_local&zone=fr-par-1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 397
+ body: '{"local_images":[{"id":"ec31d73d-ca36-4536-adf4-0feb76d30379","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"label":"ubuntu_jammy","type":"instance_local"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "397"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:37 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 949adb61-c40e-4863-af97-a97cb52b986f
+ status: 200 OK
+ code: 200
+ duration: 52.634537ms
+ - id: 3
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 299
+ host: api.scaleway.com
+ body: '{"name":"test-tf-action-instance-create-snapshot-local","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"ec31d73d-ca36-4536-adf4-0feb76d30379","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2221
+ body: '{"server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:37.881488+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9c:21", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:37.881488+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2221"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:38 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 714d0fab-821f-40d7-9504-599f8b1688a6
+ status: 201 Created
+ code: 201
+ duration: 323.440157ms
+ - id: 4
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2221
+ body: '{"server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:37.881488+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9c:21", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:37.881488+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2221"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:38 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 53150d91-8d25-4d4c-810d-06ac12e36445
+ status: 200 OK
+ code: 200
+ duration: 85.777403ms
+ - id: 5
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2221
+ body: '{"server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:37.881488+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9c:21", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:37.881488+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2221"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:38 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - d20c1c82-8ae4-4eee-b20b-dba3d3526dff
+ status: 200 OK
+ code: 200
+ duration: 74.249168ms
+ - id: 6
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 20
+ host: api.scaleway.com
+ body: '{"action":"poweron"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 357
+ body: '{"task": {"id": "74037c21-d757-4d42-82d1-8e0836d7c4da", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc/action", "href_result": "/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "started_at": "2025-12-11T21:28:38.442051+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "357"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:38 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/74037c21-d757-4d42-82d1-8e0836d7c4da
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 0164df1d-7036-4a0f-bec5-fbe8a4aaed06
+ status: 202 Accepted
+ code: 202
+ duration: 249.454654ms
+ - id: 7
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2243
+ body: '{"server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:37.881488+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9c:21", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:38.268326+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2243"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:38 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 534943e3-291c-4c04-bcac-6b0b33cd6513
+ status: 200 OK
+ code: 200
+ duration: 86.039837ms
+ - id: 8
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2347
+ body: '{"server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:37.881488+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9c:21", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:38.268326+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "2001", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2347"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:43 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 75241bcb-a8d4-4752-b289-bf523d8809b7
+ status: 200 OK
+ code: 200
+ duration: 179.152905ms
+ - id: 9
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2347
+ body: '{"server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:37.881488+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9c:21", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:38.268326+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "2001", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2347"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:48 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 3c4b024c-38d5-4189-9cc7-7ee171a35482
+ status: 200 OK
+ code: 200
+ duration: 84.733169ms
+ - id: 10
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2347
+ body: '{"server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:37.881488+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9c:21", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:38.268326+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "2001", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2347"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:53 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 198f573c-610e-4047-a20c-55a2dccd6552
+ status: 200 OK
+ code: 200
+ duration: 74.690186ms
+ - id: 11
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2378
+ body: '{"server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:37.881488+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9c:21", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:54.008124+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "2001", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2378"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:59 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 39606444-6bce-4cb4-8b21-0e4a5b5200a0
+ status: 200 OK
+ code: 200
+ duration: 100.656886ms
+ - id: 12
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2378
+ body: '{"server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:37.881488+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9c:21", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:54.008124+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "2001", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2378"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:00 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 924c7d66-5a4d-4a69-a401-30df04373406
+ status: 200 OK
+ code: 200
+ duration: 1.532649378s
+ - id: 13
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 529
+ body: '{"volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:37.881488+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "529"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:00 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - ccca30a9-6e26-405d-94ac-5021afd0f80e
+ status: 200 OK
+ code: 200
+ duration: 51.836667ms
+ - id: 14
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:00 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 717a3a8d-874c-4734-8f03-b80fcfb56c42
+ status: 200 OK
+ code: 200
+ duration: 44.68112ms
+ - id: 15
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:00 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 3c9b5d88-04f3-4d6b-b991-2b96c3ee44a0
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 61.021479ms
+ - id: 16
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 529
+ body: '{"volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:37.881488+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "529"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:00 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - c179fdab-397c-4268-a9c0-ac68f93bbbca
+ status: 200 OK
+ code: 200
+ duration: 65.964588ms
+ - id: 17
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 529
+ body: '{"volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:37.881488+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "529"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:00 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - db298b49-6930-4d70-badd-4d7d0fd7ebf6
+ status: 200 OK
+ code: 200
+ duration: 72.700316ms
+ - id: 18
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 133
+ host: api.scaleway.com
+ body: '{"name":"snp-youthful-lederberg","volume_id":"abc03d27-e672-4b4e-b8a3-27a9d1f7cf00","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 850
+ body: '{"snapshot": {"id": "942dd040-ff2c-4b99-b4d6-4636b39a6090", "name": "snp-youthful-lederberg", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:29:00.853975+00:00", "modification_date": "2025-12-11T21:29:00.853975+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}, "task": {"id": "88e2cc5e-8753-4219-aa23-cd8ddab1a6d6", "description": "volume_snapshot", "status": "pending", "href_from": "/snapshots", "href_result": "snapshots/942dd040-ff2c-4b99-b4d6-4636b39a6090", "started_at": "2025-12-11T21:29:01.073056+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "850"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:01 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - a9740a6f-c9cc-42f2-8cf8-2ffb4ba313f5
+ status: 201 Created
+ code: 201
+ duration: 392.275004ms
+ - id: 19
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/942dd040-ff2c-4b99-b4d6-4636b39a6090
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 539
+ body: '{"snapshot": {"id": "942dd040-ff2c-4b99-b4d6-4636b39a6090", "name": "snp-youthful-lederberg", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:29:00.853975+00:00", "modification_date": "2025-12-11T21:29:00.853975+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "539"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:01 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - ce1863bb-8192-40a2-9409-bb1cd37f3fd6
+ status: 200 OK
+ code: 200
+ duration: 57.368533ms
+ - id: 20
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/942dd040-ff2c-4b99-b4d6-4636b39a6090
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 539
+ body: '{"snapshot": {"id": "942dd040-ff2c-4b99-b4d6-4636b39a6090", "name": "snp-youthful-lederberg", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:29:00.853975+00:00", "modification_date": "2025-12-11T21:29:00.853975+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "539"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:06 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - d0863de2-c673-47ab-9b76-ec0fa27c7572
+ status: 200 OK
+ code: 200
+ duration: 71.441681ms
+ - id: 21
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/942dd040-ff2c-4b99-b4d6-4636b39a6090
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 539
+ body: '{"snapshot": {"id": "942dd040-ff2c-4b99-b4d6-4636b39a6090", "name": "snp-youthful-lederberg", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:29:00.853975+00:00", "modification_date": "2025-12-11T21:29:00.853975+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "539"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:11 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - b2ff18e5-d398-49be-b6a5-78cf0a004e27
+ status: 200 OK
+ code: 200
+ duration: 68.831965ms
+ - id: 22
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/942dd040-ff2c-4b99-b4d6-4636b39a6090
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 539
+ body: '{"snapshot": {"id": "942dd040-ff2c-4b99-b4d6-4636b39a6090", "name": "snp-youthful-lederberg", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:29:00.853975+00:00", "modification_date": "2025-12-11T21:29:00.853975+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "539"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:16 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - bd1e4aa6-7558-4577-81d0-e7a5c5b8d4ea
+ status: 200 OK
+ code: 200
+ duration: 70.92558ms
+ - id: 23
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/942dd040-ff2c-4b99-b4d6-4636b39a6090
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 539
+ body: '{"snapshot": {"id": "942dd040-ff2c-4b99-b4d6-4636b39a6090", "name": "snp-youthful-lederberg", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:29:00.853975+00:00", "modification_date": "2025-12-11T21:29:00.853975+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "539"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:21 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 42dad99a-f65d-4d6c-b744-308a8a77c2e5
+ status: 200 OK
+ code: 200
+ duration: 61.91143ms
+ - id: 24
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/942dd040-ff2c-4b99-b4d6-4636b39a6090
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 539
+ body: '{"snapshot": {"id": "942dd040-ff2c-4b99-b4d6-4636b39a6090", "name": "snp-youthful-lederberg", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:29:00.853975+00:00", "modification_date": "2025-12-11T21:29:00.853975+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "539"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:26 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 6c170326-d9b5-4ba7-9049-5c607df82099
+ status: 200 OK
+ code: 200
+ duration: 64.205882ms
+ - id: 25
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/942dd040-ff2c-4b99-b4d6-4636b39a6090
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 539
+ body: '{"snapshot": {"id": "942dd040-ff2c-4b99-b4d6-4636b39a6090", "name": "snp-youthful-lederberg", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:29:00.853975+00:00", "modification_date": "2025-12-11T21:29:00.853975+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "539"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:31 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 973ceb6d-173b-44e3-9eb0-491a8bb0eab1
+ status: 200 OK
+ code: 200
+ duration: 70.38353ms
+ - id: 26
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/942dd040-ff2c-4b99-b4d6-4636b39a6090
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 539
+ body: '{"snapshot": {"id": "942dd040-ff2c-4b99-b4d6-4636b39a6090", "name": "snp-youthful-lederberg", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:29:00.853975+00:00", "modification_date": "2025-12-11T21:29:00.853975+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "539"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:36 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - a280642b-447b-4391-801c-35abd8c624f4
+ status: 200 OK
+ code: 200
+ duration: 65.048196ms
+ - id: 27
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/942dd040-ff2c-4b99-b4d6-4636b39a6090
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 539
+ body: '{"snapshot": {"id": "942dd040-ff2c-4b99-b4d6-4636b39a6090", "name": "snp-youthful-lederberg", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:29:00.853975+00:00", "modification_date": "2025-12-11T21:29:00.853975+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "539"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:41 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 8254b2d4-a825-4fa4-96f8-5ddb52627f6c
+ status: 200 OK
+ code: 200
+ duration: 68.519007ms
+ - id: 28
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/942dd040-ff2c-4b99-b4d6-4636b39a6090
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 539
+ body: '{"snapshot": {"id": "942dd040-ff2c-4b99-b4d6-4636b39a6090", "name": "snp-youthful-lederberg", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:29:00.853975+00:00", "modification_date": "2025-12-11T21:29:00.853975+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "539"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:46 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 1609d896-1af3-474b-b7d2-61f704e93775
+ status: 200 OK
+ code: 200
+ duration: 59.801113ms
+ - id: 29
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/942dd040-ff2c-4b99-b4d6-4636b39a6090
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 539
+ body: '{"snapshot": {"id": "942dd040-ff2c-4b99-b4d6-4636b39a6090", "name": "snp-youthful-lederberg", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:29:00.853975+00:00", "modification_date": "2025-12-11T21:29:00.853975+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "539"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:51 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - d92923f7-41c7-48cd-a68e-18cb4898cf63
+ status: 200 OK
+ code: 200
+ duration: 56.742666ms
+ - id: 30
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/942dd040-ff2c-4b99-b4d6-4636b39a6090
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 536
+ body: '{"snapshot": {"id": "942dd040-ff2c-4b99-b4d6-4636b39a6090", "name": "snp-youthful-lederberg", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:29:00.853975+00:00", "modification_date": "2025-12-11T21:29:55.768572+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "available", "base_volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "536"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:57 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - d12ffd43-7034-4281-a6ea-6a35bab6b5ba
+ status: 200 OK
+ code: 200
+ duration: 65.560015ms
+ - id: 31
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 529
+ body: '{"volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:55.768572+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "529"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:57 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 2f0096d8-8810-4110-88a7-062502f6cf69
+ status: 200 OK
+ code: 200
+ duration: 67.658839ms
+ - id: 32
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2378
+ body: '{"server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:55.768572+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9c:21", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:54.008124+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "2001", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2378"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:57 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 98af70c0-df54-4d3e-a852-7c53b2943711
+ status: 200 OK
+ code: 200
+ duration: 97.216637ms
+ - id: 33
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 529
+ body: '{"volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:55.768572+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "529"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:57 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 1b38a561-edc9-4c8a-a167-bf9d71d79bc5
+ status: 200 OK
+ code: 200
+ duration: 67.425691ms
+ - id: 34
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:57 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - ecdbba98-ad82-43e4-8d4b-600681a30f96
+ status: 200 OK
+ code: 200
+ duration: 75.514773ms
+ - id: 35
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:57 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 8a263790-c76a-4865-a6db-67851b7034dc
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 56.387688ms
+ - id: 36
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 529
+ body: '{"volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:55.768572+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "529"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:57 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 085eead2-7668-4c95-86c1-3b13ba88e73c
+ status: 200 OK
+ code: 200
+ duration: 57.587112ms
+ - id: 37
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2378
+ body: '{"server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:55.768572+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9c:21", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:54.008124+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "2001", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2378"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:57 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - f7b03258-0c80-4075-96a8-78ba82848f57
+ status: 200 OK
+ code: 200
+ duration: 108.666775ms
+ - id: 38
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 529
+ body: '{"volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:55.768572+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "529"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - f17a27f3-2644-46ba-ae67-5b057304d0ff
+ status: 200 OK
+ code: 200
+ duration: 63.248301ms
+ - id: 39
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - ec202657-ff1b-484a-8a13-8bac6aa1d0ea
+ status: 200 OK
+ code: 200
+ duration: 55.685468ms
+ - id: 40
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:58 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 38c22b0f-9c58-465b-8f2c-e4cd0a702b94
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 49.771133ms
+ - id: 41
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 529
+ body: '{"volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:55.768572+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "529"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - e3c43999-c0ff-4e38-a611-76e1b0c93e9d
+ status: 200 OK
+ code: 200
+ duration: 62.341287ms
+ - id: 42
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 529
+ body: '{"volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:55.768572+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "529"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 3b7e9616-9c11-4d68-8c56-d4a4a73ed1e4
+ status: 200 OK
+ code: 200
+ duration: 46.456634ms
+ - id: 43
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ base_volume_id:
+ - abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ page:
+ - "1"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots?base_volume_id=abc03d27-e672-4b4e-b8a3-27a9d1f7cf00&page=1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 539
+ body: '{"snapshots": [{"id": "942dd040-ff2c-4b99-b4d6-4636b39a6090", "name": "snp-youthful-lederberg", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:29:00.853975+00:00", "modification_date": "2025-12-11T21:29:55.768572+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "available", "base_volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}]}'
+ headers:
+ Content-Length:
+ - "539"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:58 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 9ee7081d-6a89-4088-8a9c-e4a2a374756a
+ X-Total-Count:
+ - "1"
+ status: 200 OK
+ code: 200
+ duration: 117.721631ms
+ - id: 44
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2378
+ body: '{"server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:55.768572+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9c:21", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:54.008124+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "2001", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2378"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 8a5ea040-bb9f-4622-a9e1-f431d18f30ea
+ status: 200 OK
+ code: 200
+ duration: 104.464368ms
+ - id: 45
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 529
+ body: '{"volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:55.768572+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "529"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 6e0df760-5226-4b19-a93a-6dd857e72bb3
+ status: 200 OK
+ code: 200
+ duration: 50.946052ms
+ - id: 46
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 0f23e058-6166-461d-a2db-4ec118bdbdef
+ status: 200 OK
+ code: 200
+ duration: 60.709219ms
+ - id: 47
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:58 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 0996a05c-c433-4050-ae0f-92965f60f7b3
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 48.41774ms
+ - id: 48
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 529
+ body: '{"volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:55.768572+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "529"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 8359a2c8-ee1b-42ed-b6d8-75181e504d44
+ status: 200 OK
+ code: 200
+ duration: 46.80533ms
+ - id: 49
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2378
+ body: '{"server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:55.768572+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9c:21", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:54.008124+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "2001", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2378"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:59 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - e88c6ff9-e79f-4e9a-94f8-9269df66d2b9
+ status: 200 OK
+ code: 200
+ duration: 73.866566ms
+ - id: 50
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 529
+ body: '{"volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:55.768572+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "529"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:59 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - c546bb05-6b80-4e03-8b74-60f3c880e2f4
+ status: 200 OK
+ code: 200
+ duration: 78.804636ms
+ - id: 51
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:59 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 53998e78-d64a-44a6-875f-8351d68c913f
+ status: 200 OK
+ code: 200
+ duration: 67.486907ms
+ - id: 52
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:59 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 36c6bde6-4f11-46bd-849e-d14f859ae518
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 48.62507ms
+ - id: 53
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2378
+ body: '{"server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:55.768572+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9c:21", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:28:54.008124+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "2001", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2378"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:59 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - b41c92a1-9c46-4927-bc71-437e4011fe50
+ status: 200 OK
+ code: 200
+ duration: 73.275865ms
+ - id: 54
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 47
+ host: api.scaleway.com
+ body: '{"tags":["add","tags","to","trigger","update"]}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: PATCH
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2418
+ body: '{"server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:55.768572+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["add", "tags", "to", "trigger", "update"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9c:21", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:59.671278+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "2001", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2418"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:29:59 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 6c631c7f-8f2c-4bbe-a7b8-2f31da97dc57
+ status: 200 OK
+ code: 200
+ duration: 666.830458ms
+ - id: 55
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2418
+ body: '{"server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:55.768572+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["add", "tags", "to", "trigger", "update"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9c:21", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:59.671278+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "2001", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2418"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:00 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 6161d2b2-aeb5-4fa5-a606-df80b50c7597
+ status: 200 OK
+ code: 200
+ duration: 110.428244ms
+ - id: 56
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2418
+ body: '{"server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:55.768572+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["add", "tags", "to", "trigger", "update"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9c:21", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:59.671278+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "2001", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2418"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:00 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - d7368da0-4e2e-463f-a111-9230f6a5e95d
+ status: 200 OK
+ code: 200
+ duration: 125.930247ms
+ - id: 57
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 529
+ body: '{"volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:55.768572+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "529"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:00 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 291fece3-7dac-438a-8948-14bd61193fd4
+ status: 200 OK
+ code: 200
+ duration: 53.731396ms
+ - id: 58
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:00 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 328fa595-460d-4630-a9f3-00eccfadf642
+ status: 200 OK
+ code: 200
+ duration: 70.145362ms
+ - id: 59
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:00 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 14d05c62-3d39-4273-a2c7-6a765f118da7
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 67.342084ms
+ - id: 60
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 529
+ body: '{"volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:55.768572+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "529"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:00 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - bc97fa11-fe03-4772-8a2c-2e4380522342
+ status: 200 OK
+ code: 200
+ duration: 49.308574ms
+ - id: 61
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 529
+ body: '{"volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:55.768572+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "529"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:00 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 1dc95a0a-0e37-4bb1-b2c4-2035f53ab793
+ status: 200 OK
+ code: 200
+ duration: 52.583859ms
+ - id: 62
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 181
+ host: api.scaleway.com
+ body: '{"name":"custom-name-for-snapshot","volume_id":"abc03d27-e672-4b4e-b8a3-27a9d1f7cf00","tags":["add","tags","to","trigger","update"],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 892
+ body: '{"snapshot": {"id": "392333e5-6f5f-47e9-bf50-7b4f7ba511ba", "name": "custom-name-for-snapshot", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:30:00.632665+00:00", "modification_date": "2025-12-11T21:30:00.632665+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": ["add", "tags", "to", "trigger", "update"], "zone": "fr-par-1", "error_details": null}, "task": {"id": "65c4f613-893d-426e-a667-a24ef012fe91", "description": "volume_snapshot", "status": "pending", "href_from": "/snapshots", "href_result": "snapshots/392333e5-6f5f-47e9-bf50-7b4f7ba511ba", "started_at": "2025-12-11T21:30:01.094311+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "892"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:01 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 0f3af476-29fe-4743-acaf-aacb44432810
+ status: 201 Created
+ code: 201
+ duration: 1.264691301s
+ - id: 63
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/392333e5-6f5f-47e9-bf50-7b4f7ba511ba
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 581
+ body: '{"snapshot": {"id": "392333e5-6f5f-47e9-bf50-7b4f7ba511ba", "name": "custom-name-for-snapshot", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:30:00.632665+00:00", "modification_date": "2025-12-11T21:30:00.632665+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": ["add", "tags", "to", "trigger", "update"], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "581"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:01 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 38c7aa0c-d175-4d9b-bbe1-910cd42b27b9
+ status: 200 OK
+ code: 200
+ duration: 144.170606ms
+ - id: 64
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/392333e5-6f5f-47e9-bf50-7b4f7ba511ba
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 581
+ body: '{"snapshot": {"id": "392333e5-6f5f-47e9-bf50-7b4f7ba511ba", "name": "custom-name-for-snapshot", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:30:00.632665+00:00", "modification_date": "2025-12-11T21:30:00.632665+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": ["add", "tags", "to", "trigger", "update"], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "581"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 2800f440-de08-47c1-9cbf-f1c7c7d456a7
+ status: 200 OK
+ code: 200
+ duration: 56.279064ms
+ - id: 65
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/392333e5-6f5f-47e9-bf50-7b4f7ba511ba
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 578
+ body: '{"snapshot": {"id": "392333e5-6f5f-47e9-bf50-7b4f7ba511ba", "name": "custom-name-for-snapshot", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:30:00.632665+00:00", "modification_date": "2025-12-11T21:30:07.673712+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "available", "base_volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": ["add", "tags", "to", "trigger", "update"], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "578"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:12 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 885e2955-173a-4635-84d9-2775f8f439ba
+ status: 200 OK
+ code: 200
+ duration: 81.43595ms
+ - id: 66
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 529
+ body: '{"volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:30:07.673712+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "529"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:12 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - d9857b6d-f8cd-4b90-9a62-ea3c3c533585
+ status: 200 OK
+ code: 200
+ duration: 72.63498ms
+ - id: 67
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2418
+ body: '{"server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:30:07.673712+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["add", "tags", "to", "trigger", "update"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9c:21", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:59.671278+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "2001", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2418"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:12 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 94f1d71b-ff25-4b44-adc7-d4e3071a340d
+ status: 200 OK
+ code: 200
+ duration: 93.810846ms
+ - id: 68
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 529
+ body: '{"volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:30:07.673712+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "529"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:12 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 07e981d1-8e99-4031-9ac2-7553276c01a0
+ status: 200 OK
+ code: 200
+ duration: 59.865944ms
+ - id: 69
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:12 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 315d0586-5eaf-4b07-a1f5-f5c9f6d1dd86
+ status: 200 OK
+ code: 200
+ duration: 49.178259ms
+ - id: 70
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:12 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - b70188be-abe0-4aac-b010-b530803b5075
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 87.42203ms
+ - id: 71
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 529
+ body: '{"volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:30:07.673712+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "529"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:12 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 3d49f479-efb3-48b5-9010-bd1660dd8edf
+ status: 200 OK
+ code: 200
+ duration: 43.839857ms
+ - id: 72
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2418
+ body: '{"server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:30:07.673712+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["add", "tags", "to", "trigger", "update"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9c:21", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:59.671278+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "2001", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2418"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:13 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 4fe63bf5-75d2-4b7a-b7dd-af323d5d23fc
+ status: 200 OK
+ code: 200
+ duration: 104.406427ms
+ - id: 73
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 529
+ body: '{"volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:30:07.673712+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "529"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:13 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 17ee4262-3f71-4e22-a633-44f3c625c991
+ status: 200 OK
+ code: 200
+ duration: 56.983537ms
+ - id: 74
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:13 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 6690a61b-fb45-498d-a19a-1e04fadc7815
+ status: 200 OK
+ code: 200
+ duration: 60.849202ms
+ - id: 75
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:13 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - c3108e5b-0072-479c-8bab-6b98420c14a0
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 56.918325ms
+ - id: 76
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 529
+ body: '{"volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:30:07.673712+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "529"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:13 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - bade6d59-4a3f-4695-9e68-ede1fdde3372
+ status: 200 OK
+ code: 200
+ duration: 81.707881ms
+ - id: 77
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 529
+ body: '{"volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:30:07.673712+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "529"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:13 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 725c4fa7-7ade-4baf-a31c-ca5c8006cb03
+ status: 200 OK
+ code: 200
+ duration: 49.813342ms
+ - id: 78
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ base_volume_id:
+ - abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ page:
+ - "1"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots?base_volume_id=abc03d27-e672-4b4e-b8a3-27a9d1f7cf00&page=1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1105
+ body: '{"snapshots": [{"id": "392333e5-6f5f-47e9-bf50-7b4f7ba511ba", "name": "custom-name-for-snapshot", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:30:00.632665+00:00", "modification_date": "2025-12-11T21:30:07.673712+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "available", "base_volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": ["add", "tags", "to", "trigger", "update"], "zone": "fr-par-1", "error_details": null}, {"id": "942dd040-ff2c-4b99-b4d6-4636b39a6090", "name": "snp-youthful-lederberg", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:29:00.853975+00:00", "modification_date": "2025-12-11T21:29:55.768572+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "available", "base_volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}]}'
+ headers:
+ Content-Length:
+ - "1105"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:13 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 881bc1db-e314-42be-9ff8-c1a6d459355a
+ X-Total-Count:
+ - "2"
+ status: 200 OK
+ code: 200
+ duration: 156.276115ms
+ - id: 79
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2418
+ body: '{"server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:30:07.673712+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["add", "tags", "to", "trigger", "update"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9c:21", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:59.671278+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "2001", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2418"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:13 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - f4b8712b-5196-4ef7-b295-bb9c8ff40d74
+ status: 200 OK
+ code: 200
+ duration: 114.372638ms
+ - id: 80
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 529
+ body: '{"volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:30:07.673712+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "529"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:13 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 182cd54f-8ced-4518-8936-87bf33701694
+ status: 200 OK
+ code: 200
+ duration: 77.714375ms
+ - id: 81
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:13 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - dfbc8950-4313-488b-934f-fdde0833dcdf
+ status: 200 OK
+ code: 200
+ duration: 51.311819ms
+ - id: 82
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:13 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 6a180ef4-e95f-4ea2-86c2-881df0603992
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 71.109083ms
+ - id: 83
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 529
+ body: '{"volume": {"id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:30:07.673712+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "529"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:14 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - bb7d148f-823c-4f25-825a-6538e35df99d
+ status: 200 OK
+ code: 200
+ duration: 82.525006ms
+ - id: 84
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2418
+ body: '{"server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:30:07.673712+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["add", "tags", "to", "trigger", "update"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9c:21", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:59.671278+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "2001", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2418"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:14 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 796e7ed4-0176-4eb0-82db-093d54352a1f
+ status: 200 OK
+ code: 200
+ duration: 81.984872ms
+ - id: 85
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2418
+ body: '{"server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:30:07.673712+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["add", "tags", "to", "trigger", "update"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9c:21", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:29:59.671278+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "2001", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2418"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:14 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 75bd4f16-121a-4829-9531-ccce4c15ac0d
+ status: 200 OK
+ code: 200
+ duration: 91.792623ms
+ - id: 86
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 22
+ host: api.scaleway.com
+ body: '{"action":"terminate"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 353
+ body: '{"task": {"id": "741e2739-cafa-4211-b5cc-1da742fe472e", "description": "server_terminate", "status": "pending", "href_from": "/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc/action", "href_result": "/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "started_at": "2025-12-11T21:30:14.588087+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "353"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:14 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/741e2739-cafa-4211-b5cc-1da742fe472e
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 72ab7c44-f509-414b-acf2-3c6f0fe66939
+ status: 202 Accepted
+ code: 202
+ duration: 261.846509ms
+ - id: 87
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2381
+ body: '{"server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:30:07.673712+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["add", "tags", "to", "trigger", "update"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9c:21", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:30:14.404424+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "2001", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2381"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:14 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 7fc58349-1ae3-4bd3-8b0e-91e8ebc598ab
+ status: 200 OK
+ code: 200
+ duration: 77.071988ms
+ - id: 88
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2381
+ body: '{"server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:30:07.673712+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["add", "tags", "to", "trigger", "update"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9c:21", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:30:14.404424+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "2001", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2381"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:19 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 1a1178b0-eab3-462f-8af9-6b7e47f85195
+ status: 200 OK
+ code: 200
+ duration: 94.7606ms
+ - id: 89
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2381
+ body: '{"server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc", "name": "test-tf-action-instance-create-snapshot-local"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:30:07.673712+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["add", "tags", "to", "trigger", "update"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9c:21", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:28:37.881488+00:00", "modification_date": "2025-12-11T21:30:14.404424+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "2001", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2381"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:24 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - a0da6fd7-a272-4dda-8ed2-ab1ef992a015
+ status: 200 OK
+ code: 200
+ duration: 113.872055ms
+ - id: 90
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:29 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - bc2acbb4-9238-49a0-b78b-7ccf43017e83
+ status: 404 Not Found
+ code: 404
+ duration: 43.536486ms
+ - id: 91
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "abc03d27-e672-4b4e-b8a3-27a9d1f7cf00"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:30 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 6a26d5b4-5b7f-45b9-acd8-ef4c4af5d915
+ status: 404 Not Found
+ code: 404
+ duration: 28.328276ms
+ - id: 92
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 127
+ body: '{"message":"resource is not found","resource":"volume","resource_id":"abc03d27-e672-4b4e-b8a3-27a9d1f7cf00","type":"not_found"}'
+ headers:
+ Content-Length:
+ - "127"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:30 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 620c8454-4a62-4d41-baed-b232d01c3834
+ status: 404 Not Found
+ code: 404
+ duration: 43.734418ms
+ - id: 93
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cc87f9c-b15a-4dac-83e3-22ee30ccfedc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "1cc87f9c-b15a-4dac-83e3-22ee30ccfedc"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:30 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 08904f2d-d263-46b0-8f6f-ef1640c331d4
+ status: 404 Not Found
+ code: 404
+ duration: 50.995694ms
+ - id: 94
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ base_volume_id:
+ - abc03d27-e672-4b4e-b8a3-27a9d1f7cf00
+ page:
+ - "1"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots?base_volume_id=abc03d27-e672-4b4e-b8a3-27a9d1f7cf00&page=1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"snapshots": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:30:30 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - aa17b292-8974-4e07-aaee-1a6d0c172b1d
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 100.246209ms
diff --git a/internal/services/instance/testdata/action-instance-create-snapshot-sbs.cassette.yaml b/internal/services/instance/testdata/action-instance-create-snapshot-sbs.cassette.yaml
new file mode 100644
index 000000000..9153c2406
--- /dev/null
+++ b/internal/services/instance/testdata/action-instance-create-snapshot-sbs.cassette.yaml
@@ -0,0 +1,3429 @@
+---
+version: 2
+interactions:
+ - id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ page:
+ - "1"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 39202
+ body: '{"servers": {"BASIC2-A16C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.89, "hourly_price": 0.2067, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 201.19, "hourly_price": 0.2756, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A2C-4G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 16.79, "hourly_price": 0.023, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 25.19, "hourly_price": 0.0345, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 50.3, "hourly_price": 0.0689, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A4C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 37.74, "hourly_price": 0.0517, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A8C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.48, "hourly_price": 0.1034, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "BASIC2-A8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 100.59, "hourly_price": 0.1378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 30.66, "hourly_price": 0.042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.454, "hourly_price": 0.0198, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.424, "hourly_price": 0.0088, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 46.5734, "hourly_price": 0.06378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 554.07, "hourly_price": 0.759, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 274.48, "hourly_price": 0.376, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 136.51, "hourly_price": 0.187, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1197.93, "hourly_price": 1.641, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 66.43, "hourly_price": 0.091, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}}}'
+ headers:
+ Content-Length:
+ - "39202"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:13:39 GMT
+ Link:
+ - ; rel="next",; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 9e693ad8-10c1-4788-9554-666c2e9f226e
+ X-Total-Count:
+ - "76"
+ status: 200 OK
+ code: 200
+ duration: 249.261745ms
+ - id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ page:
+ - "2"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20510
+ body: '{"servers": {"POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 891.33, "hourly_price": 1.221, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 0.1095, "hourly_price": 0.00015, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}'
+ headers:
+ Content-Length:
+ - "20510"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:13:39 GMT
+ Link:
+ - ; rel="first",; rel="previous",; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - b1cc1180-c66e-48a7-980a-0ad3210b1dc2
+ X-Total-Count:
+ - "76"
+ status: 200 OK
+ code: 200
+ duration: 50.799909ms
+ - id: 2
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ image_label:
+ - ubuntu_jammy
+ order_by:
+ - type_asc
+ type:
+ - instance_sbs
+ zone:
+ - fr-par-1
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/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
+ content_length: 1320
+ body: '{"local_images":[{"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff","arch":"arm64","zone":"fr-par-1","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G","BASIC2-A2C-4G","BASIC2-A2C-8G","BASIC2-A4C-8G","BASIC2-A4C-16G","BASIC2-A8C-16G","BASIC2-A8C-32G","BASIC2-A16C-32G","BASIC2-A16C-64G"],"label":"ubuntu_jammy","type":"instance_sbs"},{"id":"6d3c053e-c728-4294-b23a-560b62a4d592","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-48C-192G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-48C-384G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"label":"ubuntu_jammy","type":"instance_sbs"}],"total_count":2}'
+ headers:
+ Content-Length:
+ - "1320"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:13:39 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - ce1e345d-2945-491e-a426-746a4c1c78c1
+ status: 200 OK
+ code: 200
+ duration: 136.118591ms
+ - id: 3
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 302
+ host: api.scaleway.com
+ body: '{"name":"test-tf-action-instance-create-snapshot-sbs","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"sbs_volume"}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1786
+ body: '{"server": {"id": "b45de890-e769-4814-b26e-9397fe1eb829", "name": "test-tf-action-instance-create-snapshot-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "bfd34cce-e506-4ab1-990d-6137c76c0118", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:99:f1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:13:39.742684+00:00", "modification_date": "2025-12-11T20:13:39.742684+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1786"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:13:40 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 3701330d-03d2-4798-bb05-5f8c682ac908
+ status: 201 Created
+ code: 201
+ duration: 609.977514ms
+ - id: 4
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1786
+ body: '{"server": {"id": "b45de890-e769-4814-b26e-9397fe1eb829", "name": "test-tf-action-instance-create-snapshot-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "bfd34cce-e506-4ab1-990d-6137c76c0118", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:99:f1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:13:39.742684+00:00", "modification_date": "2025-12-11T20:13:39.742684+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1786"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:13:40 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 3691e49e-92b2-4247-91bc-aa996f2c29fe
+ status: 200 OK
+ code: 200
+ duration: 114.763367ms
+ - id: 5
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1786
+ body: '{"server": {"id": "b45de890-e769-4814-b26e-9397fe1eb829", "name": "test-tf-action-instance-create-snapshot-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "bfd34cce-e506-4ab1-990d-6137c76c0118", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:99:f1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:13:39.742684+00:00", "modification_date": "2025-12-11T20:13:39.742684+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1786"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:13:40 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 6391d880-c619-4c3b-95d4-4592ce239e70
+ status: 200 OK
+ code: 200
+ duration: 189.85317ms
+ - id: 6
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:39.837220Z","updated_at":"2025-12-11T20:13:39.837220Z","references":[{"id":"250306cf-198a-4b07-9634-29e078a6647a","product_resource_type":"instance_server","product_resource_id":"b45de890-e769-4814-b26e-9397fe1eb829","created_at":"2025-12-11T20:13:39.837220Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:13:40 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 87d77be8-dfde-423b-b6d0-d20d4ee6686e
+ status: 200 OK
+ code: 200
+ duration: 115.470054ms
+ - id: 7
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 20
+ host: api.scaleway.com
+ body: '{"action":"poweron"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 357
+ body: '{"task": {"id": "77227930-7b7c-460b-aa61-b611d45734dc", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/b45de890-e769-4814-b26e-9397fe1eb829/action", "href_result": "/servers/b45de890-e769-4814-b26e-9397fe1eb829", "started_at": "2025-12-11T20:13:40.837625+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "357"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:13:40 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/77227930-7b7c-460b-aa61-b611d45734dc
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - f680c6de-6cfc-433d-a2eb-f2ac8792b342
+ status: 202 Accepted
+ code: 202
+ duration: 306.779609ms
+ - id: 8
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1808
+ body: '{"server": {"id": "b45de890-e769-4814-b26e-9397fe1eb829", "name": "test-tf-action-instance-create-snapshot-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "bfd34cce-e506-4ab1-990d-6137c76c0118", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:99:f1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:13:39.742684+00:00", "modification_date": "2025-12-11T20:13:40.664026+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1808"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:13:41 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 3f7525f7-8342-4877-ac88-47401785664e
+ status: 200 OK
+ code: 200
+ duration: 190.98754ms
+ - id: 9
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1942
+ body: '{"server": {"id": "b45de890-e769-4814-b26e-9397fe1eb829", "name": "test-tf-action-instance-create-snapshot-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "bfd34cce-e506-4ab1-990d-6137c76c0118", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:99:f1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:13:39.742684+00:00", "modification_date": "2025-12-11T20:13:43.839831+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "602", "node_id": "17"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1942"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:13:46 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 829d729b-8bbe-48fa-a512-805c8c427fe1
+ status: 200 OK
+ code: 200
+ duration: 98.597799ms
+ - id: 10
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1942
+ body: '{"server": {"id": "b45de890-e769-4814-b26e-9397fe1eb829", "name": "test-tf-action-instance-create-snapshot-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "bfd34cce-e506-4ab1-990d-6137c76c0118", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:99:f1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:13:39.742684+00:00", "modification_date": "2025-12-11T20:13:43.839831+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "602", "node_id": "17"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1942"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:13:46 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - c9cb8871-5678-4c8b-9ea5-1798f7c71595
+ status: 200 OK
+ code: 200
+ duration: 101.636215ms
+ - id: 11
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "bfd34cce-e506-4ab1-990d-6137c76c0118"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:13:46 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - b8ac77f2-eab9-475a-8c37-266df5ac1148
+ status: 404 Not Found
+ code: 404
+ duration: 55.963465ms
+ - id: 12
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:39.837220Z","updated_at":"2025-12-11T20:13:39.837220Z","references":[{"id":"250306cf-198a-4b07-9634-29e078a6647a","product_resource_type":"instance_server","product_resource_id":"b45de890-e769-4814-b26e-9397fe1eb829","created_at":"2025-12-11T20:13:39.837220Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:13:46 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 08ada8df-114c-4cf9-af71-159c47379d62
+ status: 200 OK
+ code: 200
+ duration: 52.392379ms
+ - id: 13
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:13:46 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 3c5bef16-6d6b-4864-9692-2b6e73d9f187
+ status: 200 OK
+ code: 200
+ duration: 52.421924ms
+ - id: 14
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:13:46 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 83b7b331-3e3d-4384-82f5-3e2d7ef4415f
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 46.825004ms
+ - id: 15
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "bfd34cce-e506-4ab1-990d-6137c76c0118"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:13:46 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 7b8e7b75-e1b5-4f2d-82dc-cd6e686bdae7
+ status: 404 Not Found
+ code: 404
+ duration: 29.832533ms
+ - id: 16
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:39.837220Z","updated_at":"2025-12-11T20:13:39.837220Z","references":[{"id":"250306cf-198a-4b07-9634-29e078a6647a","product_resource_type":"instance_server","product_resource_id":"b45de890-e769-4814-b26e-9397fe1eb829","created_at":"2025-12-11T20:13:39.837220Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:13:46 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 536f7440-7dbf-4e1d-9c7e-70aaa74498e0
+ status: 200 OK
+ code: 200
+ duration: 42.628944ms
+ - id: 17
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/36b4ce54-c67a-4f68-ab74-839515834352
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 118
+ body: '{"details":[{"action":"read","resource":"snapshot"}],"message":"insufficient permissions","type":"permissions_denied"}'
+ headers:
+ Content-Length:
+ - "118"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:13:46 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - fe0657f4-3091-44d0-85e6-89dd2ab155a4
+ status: 403 Forbidden
+ code: 403
+ duration: 43.738668ms
+ - id: 18
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:39.837220Z","updated_at":"2025-12-11T20:13:39.837220Z","references":[{"id":"250306cf-198a-4b07-9634-29e078a6647a","product_resource_type":"instance_server","product_resource_id":"b45de890-e769-4814-b26e-9397fe1eb829","created_at":"2025-12-11T20:13:39.837220Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:13:46 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - ec13b065-f85d-462d-ae22-d8d31299d2f3
+ status: 200 OK
+ code: 200
+ duration: 56.894273ms
+ - id: 19
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 143
+ host: api.scaleway.com
+ body: '{"volume_id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"snp-silly-hypatia","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":null}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 454
+ body: '{"id":"72bce3ff-9901-4fac-8df7-7cf5c3d805ee","name":"snp-silly-hypatia","parent_volume":{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","status":"in_use"},"size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:46.733566Z","updated_at":"2025-12-11T20:13:46.733566Z","references":[],"status":"creating","tags":[],"class":"sbs","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "454"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:13:47 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 7da15e38-d6f6-449c-b122-0ff6032f822c
+ status: 200 OK
+ code: 200
+ duration: 642.316945ms
+ - id: 20
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/72bce3ff-9901-4fac-8df7-7cf5c3d805ee
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 680
+ body: '{"id":"72bce3ff-9901-4fac-8df7-7cf5c3d805ee","name":"snp-silly-hypatia","parent_volume":{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","status":"in_use"},"size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:46.733566Z","updated_at":"2025-12-11T20:13:46.733566Z","references":[{"id":"54438638-ffce-4ee5-b179-4fe686fbe95b","product_resource_type":"internal","product_resource_id":"00000000-0000-0000-0000-000000000000","created_at":"2025-12-11T20:13:46.783299Z","type":"unknown_type","status":"attached"}],"status":"creating","tags":[],"class":"sbs","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "680"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:13:47 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 397d64c8-0392-4142-9348-a324a0fd74d7
+ status: 200 OK
+ code: 200
+ duration: 260.147318ms
+ - id: 21
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/72bce3ff-9901-4fac-8df7-7cf5c3d805ee
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 455
+ body: '{"id":"72bce3ff-9901-4fac-8df7-7cf5c3d805ee","name":"snp-silly-hypatia","parent_volume":{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","status":"in_use"},"size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:46.733566Z","updated_at":"2025-12-11T20:13:46.733566Z","references":[],"status":"available","tags":[],"class":"sbs","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "455"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:40 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 30f2447e-4aeb-44f2-bd52-d7bb1bf05359
+ status: 200 OK
+ code: 200
+ duration: 217.01488ms
+ - id: 22
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:39.837220Z","updated_at":"2025-12-11T20:13:39.837220Z","references":[{"id":"250306cf-198a-4b07-9634-29e078a6647a","product_resource_type":"instance_server","product_resource_id":"b45de890-e769-4814-b26e-9397fe1eb829","created_at":"2025-12-11T20:13:39.837220Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:40 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 38ce5f5d-8b2e-4075-89ba-059e56007488
+ status: 200 OK
+ code: 200
+ duration: 58.267593ms
+ - id: 23
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/36b4ce54-c67a-4f68-ab74-839515834352
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 118
+ body: '{"details":[{"action":"read","resource":"snapshot"}],"message":"insufficient permissions","type":"permissions_denied"}'
+ headers:
+ Content-Length:
+ - "118"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:40 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 8160bd0d-44be-45e4-a3ed-47e54a26b7e3
+ status: 403 Forbidden
+ code: 403
+ duration: 47.444467ms
+ - id: 24
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1942
+ body: '{"server": {"id": "b45de890-e769-4814-b26e-9397fe1eb829", "name": "test-tf-action-instance-create-snapshot-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "bfd34cce-e506-4ab1-990d-6137c76c0118", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:99:f1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:13:39.742684+00:00", "modification_date": "2025-12-11T20:13:43.839831+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "602", "node_id": "17"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1942"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:40 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 29596393-ae01-4906-a939-06570ef37002
+ status: 200 OK
+ code: 200
+ duration: 104.127545ms
+ - id: 25
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "bfd34cce-e506-4ab1-990d-6137c76c0118"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:40 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - ae0a2007-2cf5-4e0a-a6cb-d62bf56db576
+ status: 404 Not Found
+ code: 404
+ duration: 34.611679ms
+ - id: 26
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:39.837220Z","updated_at":"2025-12-11T20:13:39.837220Z","references":[{"id":"250306cf-198a-4b07-9634-29e078a6647a","product_resource_type":"instance_server","product_resource_id":"b45de890-e769-4814-b26e-9397fe1eb829","created_at":"2025-12-11T20:13:39.837220Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:40 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 9a8705b1-0d76-44e2-aaa9-0260497c7881
+ status: 200 OK
+ code: 200
+ duration: 56.484524ms
+ - id: 27
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:40 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 049d2bc4-fecd-4826-aaf1-d58966d957a7
+ status: 200 OK
+ code: 200
+ duration: 67.88317ms
+ - id: 28
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:41 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 9867278b-16ed-45d0-acc0-a68a523e48e3
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 63.264105ms
+ - id: 29
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:39.837220Z","updated_at":"2025-12-11T20:13:39.837220Z","references":[{"id":"250306cf-198a-4b07-9634-29e078a6647a","product_resource_type":"instance_server","product_resource_id":"b45de890-e769-4814-b26e-9397fe1eb829","created_at":"2025-12-11T20:13:39.837220Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:41 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 9d7a03db-24c7-49f7-95f5-fd1a3f84c128
+ status: 200 OK
+ code: 200
+ duration: 50.026597ms
+ - id: 30
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/36b4ce54-c67a-4f68-ab74-839515834352
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 118
+ body: '{"details":[{"action":"read","resource":"snapshot"}],"message":"insufficient permissions","type":"permissions_denied"}'
+ headers:
+ Content-Length:
+ - "118"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:41 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - ba097574-adb6-44ab-9a47-aa24c13d4818
+ status: 403 Forbidden
+ code: 403
+ duration: 35.830898ms
+ - id: 31
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1942
+ body: '{"server": {"id": "b45de890-e769-4814-b26e-9397fe1eb829", "name": "test-tf-action-instance-create-snapshot-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "bfd34cce-e506-4ab1-990d-6137c76c0118", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:99:f1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:13:39.742684+00:00", "modification_date": "2025-12-11T20:13:43.839831+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "602", "node_id": "17"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1942"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:41 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 5b41b3d0-f36d-4124-acfe-efc461d72eb9
+ status: 200 OK
+ code: 200
+ duration: 328.066858ms
+ - id: 32
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "bfd34cce-e506-4ab1-990d-6137c76c0118"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:41 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 79681df8-3aea-4175-9786-8197073bbabc
+ status: 404 Not Found
+ code: 404
+ duration: 27.52ms
+ - id: 33
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:39.837220Z","updated_at":"2025-12-11T20:13:39.837220Z","references":[{"id":"250306cf-198a-4b07-9634-29e078a6647a","product_resource_type":"instance_server","product_resource_id":"b45de890-e769-4814-b26e-9397fe1eb829","created_at":"2025-12-11T20:13:39.837220Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:41 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 673d7815-186e-4d88-b5e0-17a8e849f0cf
+ status: 200 OK
+ code: 200
+ duration: 62.385015ms
+ - id: 34
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:41 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 624bb738-c6a5-46d7-9ce7-8596c6b09f9d
+ status: 200 OK
+ code: 200
+ duration: 56.027266ms
+ - id: 35
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:41 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - f22d60c9-71ac-4a34-95db-4297e7b0be28
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 70.802983ms
+ - id: 36
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:39.837220Z","updated_at":"2025-12-11T20:13:39.837220Z","references":[{"id":"250306cf-198a-4b07-9634-29e078a6647a","product_resource_type":"instance_server","product_resource_id":"b45de890-e769-4814-b26e-9397fe1eb829","created_at":"2025-12-11T20:13:39.837220Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:41 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 0d3e0ec8-bf74-41a8-b433-e8e6e887bfa3
+ status: 200 OK
+ code: 200
+ duration: 47.058442ms
+ - id: 37
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/36b4ce54-c67a-4f68-ab74-839515834352
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 118
+ body: '{"details":[{"action":"read","resource":"snapshot"}],"message":"insufficient permissions","type":"permissions_denied"}'
+ headers:
+ Content-Length:
+ - "118"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:41 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 42a757a9-4019-4097-b3cf-2588638c7366
+ status: 403 Forbidden
+ code: 403
+ duration: 54.158155ms
+ - id: 38
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:39.837220Z","updated_at":"2025-12-11T20:13:39.837220Z","references":[{"id":"250306cf-198a-4b07-9634-29e078a6647a","product_resource_type":"instance_server","product_resource_id":"b45de890-e769-4814-b26e-9397fe1eb829","created_at":"2025-12-11T20:13:39.837220Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:42 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - cf4ffe28-d826-49a7-9284-7e93bf12de67
+ status: 200 OK
+ code: 200
+ duration: 35.737092ms
+ - id: 39
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ order_by:
+ - created_at_asc
+ page:
+ - "1"
+ volume_id:
+ - bfd34cce-e506-4ab1-990d-6137c76c0118
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots?order_by=created_at_asc&page=1&volume_id=bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 487
+ body: '{"snapshots":[{"id":"72bce3ff-9901-4fac-8df7-7cf5c3d805ee","name":"snp-silly-hypatia","parent_volume":{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","status":"in_use"},"size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:46.733566Z","updated_at":"2025-12-11T20:13:46.733566Z","references":[],"status":"available","tags":[],"class":"sbs","zone":"fr-par-1"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "487"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:42 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 21161746-c7fe-492c-92f5-a0f7b601cb25
+ status: 200 OK
+ code: 200
+ duration: 46.952213ms
+ - id: 40
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1942
+ body: '{"server": {"id": "b45de890-e769-4814-b26e-9397fe1eb829", "name": "test-tf-action-instance-create-snapshot-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "bfd34cce-e506-4ab1-990d-6137c76c0118", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:99:f1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:13:39.742684+00:00", "modification_date": "2025-12-11T20:13:43.839831+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "602", "node_id": "17"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1942"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:42 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - b4782839-412c-449d-8b72-a3b1ab556072
+ status: 200 OK
+ code: 200
+ duration: 122.715892ms
+ - id: 41
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "bfd34cce-e506-4ab1-990d-6137c76c0118"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:42 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 5ca8818b-9ac5-461c-8eae-af20efb8be47
+ status: 404 Not Found
+ code: 404
+ duration: 33.05223ms
+ - id: 42
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:39.837220Z","updated_at":"2025-12-11T20:13:39.837220Z","references":[{"id":"250306cf-198a-4b07-9634-29e078a6647a","product_resource_type":"instance_server","product_resource_id":"b45de890-e769-4814-b26e-9397fe1eb829","created_at":"2025-12-11T20:13:39.837220Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:42 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 043e5a9e-e5a2-4374-9a8f-0c2761124e90
+ status: 200 OK
+ code: 200
+ duration: 46.31141ms
+ - id: 43
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:42 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - c82d289f-bd39-4ac7-9ad5-8233b700508a
+ status: 200 OK
+ code: 200
+ duration: 51.847686ms
+ - id: 44
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:42 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 0df81270-1f18-43fe-a3ae-3f980e31b39b
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 75.004272ms
+ - id: 45
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:39.837220Z","updated_at":"2025-12-11T20:13:39.837220Z","references":[{"id":"250306cf-198a-4b07-9634-29e078a6647a","product_resource_type":"instance_server","product_resource_id":"b45de890-e769-4814-b26e-9397fe1eb829","created_at":"2025-12-11T20:13:39.837220Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:42 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - d9f4f416-dbaf-427f-ae50-bd1b4bdc6fc9
+ status: 200 OK
+ code: 200
+ duration: 33.557388ms
+ - id: 46
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/36b4ce54-c67a-4f68-ab74-839515834352
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 118
+ body: '{"details":[{"action":"read","resource":"snapshot"}],"message":"insufficient permissions","type":"permissions_denied"}'
+ headers:
+ Content-Length:
+ - "118"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:42 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - f0987f2f-0d3d-47e7-87f6-a633b7d84a49
+ status: 403 Forbidden
+ code: 403
+ duration: 40.205323ms
+ - id: 47
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1942
+ body: '{"server": {"id": "b45de890-e769-4814-b26e-9397fe1eb829", "name": "test-tf-action-instance-create-snapshot-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "bfd34cce-e506-4ab1-990d-6137c76c0118", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:99:f1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:13:39.742684+00:00", "modification_date": "2025-12-11T20:13:43.839831+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "602", "node_id": "17"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1942"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:42 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 18e95657-c68a-4d1a-9a01-b9882fc0978b
+ status: 200 OK
+ code: 200
+ duration: 117.450615ms
+ - id: 48
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "bfd34cce-e506-4ab1-990d-6137c76c0118"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:42 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - c3e3a887-33e8-44c2-a192-44f524570ad2
+ status: 404 Not Found
+ code: 404
+ duration: 35.463719ms
+ - id: 49
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:39.837220Z","updated_at":"2025-12-11T20:13:39.837220Z","references":[{"id":"250306cf-198a-4b07-9634-29e078a6647a","product_resource_type":"instance_server","product_resource_id":"b45de890-e769-4814-b26e-9397fe1eb829","created_at":"2025-12-11T20:13:39.837220Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:42 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 2a14465f-40e8-4e8f-bb86-792e6b24a24c
+ status: 200 OK
+ code: 200
+ duration: 97.014948ms
+ - id: 50
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:43 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - fa40535e-3e4e-40b0-a917-d3d832c67350
+ status: 200 OK
+ code: 200
+ duration: 54.01687ms
+ - id: 51
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:43 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - c3748b28-7bba-4b45-9b21-95b5e9e03e85
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 73.108162ms
+ - id: 52
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1942
+ body: '{"server": {"id": "b45de890-e769-4814-b26e-9397fe1eb829", "name": "test-tf-action-instance-create-snapshot-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "bfd34cce-e506-4ab1-990d-6137c76c0118", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:99:f1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:13:39.742684+00:00", "modification_date": "2025-12-11T20:13:43.839831+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "602", "node_id": "17"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1942"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:43 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 2ec03d7f-9c5a-4d0a-839e-45c13912cdaa
+ status: 200 OK
+ code: 200
+ duration: 91.219153ms
+ - id: 53
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 47
+ host: api.scaleway.com
+ body: '{"tags":["add","tags","to","trigger","update"]}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829
+ method: PATCH
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1982
+ body: '{"server": {"id": "b45de890-e769-4814-b26e-9397fe1eb829", "name": "test-tf-action-instance-create-snapshot-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "bfd34cce-e506-4ab1-990d-6137c76c0118", "state": "available", "zone": "fr-par-1"}}, "tags": ["add", "tags", "to", "trigger", "update"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:99:f1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:13:39.742684+00:00", "modification_date": "2025-12-11T20:14:43.374403+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "602", "node_id": "17"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1982"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:43 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 152aa9d9-a66e-4c0e-829a-b52ac5c0bc5a
+ status: 200 OK
+ code: 200
+ duration: 471.294541ms
+ - id: 54
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1982
+ body: '{"server": {"id": "b45de890-e769-4814-b26e-9397fe1eb829", "name": "test-tf-action-instance-create-snapshot-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "bfd34cce-e506-4ab1-990d-6137c76c0118", "state": "available", "zone": "fr-par-1"}}, "tags": ["add", "tags", "to", "trigger", "update"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:99:f1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:13:39.742684+00:00", "modification_date": "2025-12-11T20:14:43.374403+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "602", "node_id": "17"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1982"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:43 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - a9c639a1-4164-4f6d-8633-c3d6633ba497
+ status: 200 OK
+ code: 200
+ duration: 98.888356ms
+ - id: 55
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1982
+ body: '{"server": {"id": "b45de890-e769-4814-b26e-9397fe1eb829", "name": "test-tf-action-instance-create-snapshot-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "bfd34cce-e506-4ab1-990d-6137c76c0118", "state": "available", "zone": "fr-par-1"}}, "tags": ["add", "tags", "to", "trigger", "update"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:99:f1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:13:39.742684+00:00", "modification_date": "2025-12-11T20:14:43.374403+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "602", "node_id": "17"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1982"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:43 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - daf42b61-d457-4a70-a8f2-ff1091440a65
+ status: 200 OK
+ code: 200
+ duration: 104.060158ms
+ - id: 56
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "bfd34cce-e506-4ab1-990d-6137c76c0118"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:44 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - cd7f203f-e79c-4a26-ba07-ba3f79fc17f1
+ status: 404 Not Found
+ code: 404
+ duration: 35.706444ms
+ - id: 57
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:39.837220Z","updated_at":"2025-12-11T20:13:39.837220Z","references":[{"id":"250306cf-198a-4b07-9634-29e078a6647a","product_resource_type":"instance_server","product_resource_id":"b45de890-e769-4814-b26e-9397fe1eb829","created_at":"2025-12-11T20:13:39.837220Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:44 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 14533ddb-74c9-4541-b6b6-99725fb341b8
+ status: 200 OK
+ code: 200
+ duration: 54.372919ms
+ - id: 58
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:44 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - f53183b1-61a8-4478-bc0d-f276ecc3c7ee
+ status: 200 OK
+ code: 200
+ duration: 61.956371ms
+ - id: 59
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:44 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 3d82f5e7-1d82-4c39-b1a5-5e4104320207
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 61.053784ms
+ - id: 60
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "bfd34cce-e506-4ab1-990d-6137c76c0118"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:44 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - f44f70f8-3510-4a68-b760-8614de0eda78
+ status: 404 Not Found
+ code: 404
+ duration: 30.529473ms
+ - id: 61
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:39.837220Z","updated_at":"2025-12-11T20:13:39.837220Z","references":[{"id":"250306cf-198a-4b07-9634-29e078a6647a","product_resource_type":"instance_server","product_resource_id":"b45de890-e769-4814-b26e-9397fe1eb829","created_at":"2025-12-11T20:13:39.837220Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:44 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - b3a596ae-5c88-421f-a49a-53825eff7e53
+ status: 200 OK
+ code: 200
+ duration: 47.814743ms
+ - id: 62
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:39.837220Z","updated_at":"2025-12-11T20:13:39.837220Z","references":[{"id":"250306cf-198a-4b07-9634-29e078a6647a","product_resource_type":"instance_server","product_resource_id":"b45de890-e769-4814-b26e-9397fe1eb829","created_at":"2025-12-11T20:13:39.837220Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:44 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 1a2be01c-d1ac-4ad4-ab32-6f79b5c09204
+ status: 200 OK
+ code: 200
+ duration: 32.348759ms
+ - id: 63
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/36b4ce54-c67a-4f68-ab74-839515834352
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 118
+ body: '{"details":[{"action":"read","resource":"snapshot"}],"message":"insufficient permissions","type":"permissions_denied"}'
+ headers:
+ Content-Length:
+ - "118"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:44 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - c85ad6a3-feb5-4431-a0bb-48e76d873058
+ status: 403 Forbidden
+ code: 403
+ duration: 37.963002ms
+ - id: 64
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 184
+ host: api.scaleway.com
+ body: '{"volume_id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"custom-name-for-snapshot","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":["add","tags","to","trigger","update"]}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 497
+ body: '{"id":"31a8096d-b968-4c6f-bc27-15cb8ad4a1bb","name":"custom-name-for-snapshot","parent_volume":{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","status":"in_use"},"size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:14:44.359633Z","updated_at":"2025-12-11T20:14:44.359633Z","references":[],"status":"creating","tags":["add","tags","to","trigger","update"],"class":"sbs","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "497"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:44 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - d32537c7-c68e-47a9-8309-b794d60d804f
+ status: 200 OK
+ code: 200
+ duration: 366.958926ms
+ - id: 65
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/31a8096d-b968-4c6f-bc27-15cb8ad4a1bb
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 723
+ body: '{"id":"31a8096d-b968-4c6f-bc27-15cb8ad4a1bb","name":"custom-name-for-snapshot","parent_volume":{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","status":"in_use"},"size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:14:44.359633Z","updated_at":"2025-12-11T20:14:44.359633Z","references":[{"id":"9fe6ec51-e5f5-45a7-8590-7c03d138aaa4","product_resource_type":"internal","product_resource_id":"00000000-0000-0000-0000-000000000000","created_at":"2025-12-11T20:14:44.416192Z","type":"unknown_type","status":"attached"}],"status":"creating","tags":["add","tags","to","trigger","update"],"class":"sbs","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "723"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:44 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 052fd9de-7a0a-472c-b294-a86508f8ab0b
+ status: 200 OK
+ code: 200
+ duration: 231.40298ms
+ - id: 66
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/31a8096d-b968-4c6f-bc27-15cb8ad4a1bb
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 498
+ body: '{"id":"31a8096d-b968-4c6f-bc27-15cb8ad4a1bb","name":"custom-name-for-snapshot","parent_volume":{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","status":"in_use"},"size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:14:44.359633Z","updated_at":"2025-12-11T20:14:44.359633Z","references":[],"status":"available","tags":["add","tags","to","trigger","update"],"class":"sbs","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "498"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - fd90f489-b4ed-4dcc-871b-da3389fc76bf
+ status: 200 OK
+ code: 200
+ duration: 302.251579ms
+ - id: 67
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:39.837220Z","updated_at":"2025-12-11T20:13:39.837220Z","references":[{"id":"250306cf-198a-4b07-9634-29e078a6647a","product_resource_type":"instance_server","product_resource_id":"b45de890-e769-4814-b26e-9397fe1eb829","created_at":"2025-12-11T20:13:39.837220Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 7581fd2c-b03a-4b74-8103-c51c1633d125
+ status: 200 OK
+ code: 200
+ duration: 33.964974ms
+ - id: 68
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/36b4ce54-c67a-4f68-ab74-839515834352
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 118
+ body: '{"details":[{"action":"read","resource":"snapshot"}],"message":"insufficient permissions","type":"permissions_denied"}'
+ headers:
+ Content-Length:
+ - "118"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - d2b59feb-30e1-4297-9c62-16a559f84516
+ status: 403 Forbidden
+ code: 403
+ duration: 31.900016ms
+ - id: 69
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1982
+ body: '{"server": {"id": "b45de890-e769-4814-b26e-9397fe1eb829", "name": "test-tf-action-instance-create-snapshot-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "bfd34cce-e506-4ab1-990d-6137c76c0118", "state": "available", "zone": "fr-par-1"}}, "tags": ["add", "tags", "to", "trigger", "update"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:99:f1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:13:39.742684+00:00", "modification_date": "2025-12-11T20:14:43.374403+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "602", "node_id": "17"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1982"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 2168f0a0-6ebe-4128-bd2c-e712ada5e82b
+ status: 200 OK
+ code: 200
+ duration: 123.363319ms
+ - id: 70
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "bfd34cce-e506-4ab1-990d-6137c76c0118"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 56d41660-c069-4e12-882b-cea16c7b46b7
+ status: 404 Not Found
+ code: 404
+ duration: 27.956571ms
+ - id: 71
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:39.837220Z","updated_at":"2025-12-11T20:13:39.837220Z","references":[{"id":"250306cf-198a-4b07-9634-29e078a6647a","product_resource_type":"instance_server","product_resource_id":"b45de890-e769-4814-b26e-9397fe1eb829","created_at":"2025-12-11T20:13:39.837220Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 0b3e182a-9dd6-4bdb-a3c3-e77cb3284bf0
+ status: 200 OK
+ code: 200
+ duration: 53.786217ms
+ - id: 72
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 35b088a2-5ced-444f-b28c-c2d59ccaaee2
+ status: 200 OK
+ code: 200
+ duration: 53.382309ms
+ - id: 73
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:50 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 5f9b0cdd-cffd-45b0-a80f-71047528121a
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 46.005105ms
+ - id: 74
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:39.837220Z","updated_at":"2025-12-11T20:13:39.837220Z","references":[{"id":"250306cf-198a-4b07-9634-29e078a6647a","product_resource_type":"instance_server","product_resource_id":"b45de890-e769-4814-b26e-9397fe1eb829","created_at":"2025-12-11T20:13:39.837220Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 7c69e094-553f-4103-803d-9dea454d4f90
+ status: 200 OK
+ code: 200
+ duration: 40.44848ms
+ - id: 75
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/36b4ce54-c67a-4f68-ab74-839515834352
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 118
+ body: '{"details":[{"action":"read","resource":"snapshot"}],"message":"insufficient permissions","type":"permissions_denied"}'
+ headers:
+ Content-Length:
+ - "118"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 0c1c0978-6d02-45ab-9b73-bc2843733144
+ status: 403 Forbidden
+ code: 403
+ duration: 35.799609ms
+ - id: 76
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1982
+ body: '{"server": {"id": "b45de890-e769-4814-b26e-9397fe1eb829", "name": "test-tf-action-instance-create-snapshot-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "bfd34cce-e506-4ab1-990d-6137c76c0118", "state": "available", "zone": "fr-par-1"}}, "tags": ["add", "tags", "to", "trigger", "update"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:99:f1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:13:39.742684+00:00", "modification_date": "2025-12-11T20:14:43.374403+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "602", "node_id": "17"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1982"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:51 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - f36f9d89-3272-419c-887b-1292de794266
+ status: 200 OK
+ code: 200
+ duration: 91.668137ms
+ - id: 77
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "bfd34cce-e506-4ab1-990d-6137c76c0118"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:51 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 7ed63553-c1ae-4576-be3b-00d496c3ff4e
+ status: 404 Not Found
+ code: 404
+ duration: 29.166322ms
+ - id: 78
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:39.837220Z","updated_at":"2025-12-11T20:13:39.837220Z","references":[{"id":"250306cf-198a-4b07-9634-29e078a6647a","product_resource_type":"instance_server","product_resource_id":"b45de890-e769-4814-b26e-9397fe1eb829","created_at":"2025-12-11T20:13:39.837220Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:51 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 51d1947b-5aba-4414-a5a7-0a051ed772db
+ status: 200 OK
+ code: 200
+ duration: 33.176914ms
+ - id: 79
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:51 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - b755bc3f-d3cd-4487-b36e-4551e922749c
+ status: 200 OK
+ code: 200
+ duration: 49.991661ms
+ - id: 80
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:51 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - beb96729-252f-4ce5-a3a3-d3a53babfec3
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 52.56328ms
+ - id: 81
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:39.837220Z","updated_at":"2025-12-11T20:13:39.837220Z","references":[{"id":"250306cf-198a-4b07-9634-29e078a6647a","product_resource_type":"instance_server","product_resource_id":"b45de890-e769-4814-b26e-9397fe1eb829","created_at":"2025-12-11T20:13:39.837220Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:51 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 70d2555c-10da-44f4-a89e-2160d24e0a83
+ status: 200 OK
+ code: 200
+ duration: 34.475824ms
+ - id: 82
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/36b4ce54-c67a-4f68-ab74-839515834352
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 118
+ body: '{"details":[{"action":"read","resource":"snapshot"}],"message":"insufficient permissions","type":"permissions_denied"}'
+ headers:
+ Content-Length:
+ - "118"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:51 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - f4590779-c852-4bb8-82c8-f26347bb7b33
+ status: 403 Forbidden
+ code: 403
+ duration: 34.41539ms
+ - id: 83
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:39.837220Z","updated_at":"2025-12-11T20:13:39.837220Z","references":[{"id":"250306cf-198a-4b07-9634-29e078a6647a","product_resource_type":"instance_server","product_resource_id":"b45de890-e769-4814-b26e-9397fe1eb829","created_at":"2025-12-11T20:13:39.837220Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:51 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 8ccbe993-49ed-416c-9008-e757557864da
+ status: 200 OK
+ code: 200
+ duration: 29.594266ms
+ - id: 84
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ order_by:
+ - created_at_asc
+ page:
+ - "1"
+ volume_id:
+ - bfd34cce-e506-4ab1-990d-6137c76c0118
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots?order_by=created_at_asc&page=1&volume_id=bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 986
+ body: '{"snapshots":[{"id":"72bce3ff-9901-4fac-8df7-7cf5c3d805ee","name":"snp-silly-hypatia","parent_volume":{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","status":"in_use"},"size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:46.733566Z","updated_at":"2025-12-11T20:13:46.733566Z","references":[],"status":"available","tags":[],"class":"sbs","zone":"fr-par-1"},{"id":"31a8096d-b968-4c6f-bc27-15cb8ad4a1bb","name":"custom-name-for-snapshot","parent_volume":{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","status":"in_use"},"size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:14:44.359633Z","updated_at":"2025-12-11T20:14:44.359633Z","references":[],"status":"available","tags":["add","tags","to","trigger","update"],"class":"sbs","zone":"fr-par-1"}],"total_count":2}'
+ headers:
+ Content-Length:
+ - "986"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:51 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - a46b6dbe-062b-45e1-baef-c7ba0c2035c5
+ status: 200 OK
+ code: 200
+ duration: 55.638796ms
+ - id: 85
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1982
+ body: '{"server": {"id": "b45de890-e769-4814-b26e-9397fe1eb829", "name": "test-tf-action-instance-create-snapshot-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "bfd34cce-e506-4ab1-990d-6137c76c0118", "state": "available", "zone": "fr-par-1"}}, "tags": ["add", "tags", "to", "trigger", "update"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:99:f1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:13:39.742684+00:00", "modification_date": "2025-12-11T20:14:43.374403+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "602", "node_id": "17"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1982"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:51 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 30c9e2d7-3465-4c35-a0b3-cef4e3816326
+ status: 200 OK
+ code: 200
+ duration: 84.729076ms
+ - id: 86
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "bfd34cce-e506-4ab1-990d-6137c76c0118"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:51 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - f2a56836-d00e-47c2-a8cc-a382ffabf80b
+ status: 404 Not Found
+ code: 404
+ duration: 33.465055ms
+ - id: 87
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:39.837220Z","updated_at":"2025-12-11T20:13:39.837220Z","references":[{"id":"250306cf-198a-4b07-9634-29e078a6647a","product_resource_type":"instance_server","product_resource_id":"b45de890-e769-4814-b26e-9397fe1eb829","created_at":"2025-12-11T20:13:39.837220Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:51 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - d725c3d6-2a88-4fd2-8b94-6b1343e40082
+ status: 200 OK
+ code: 200
+ duration: 38.098587ms
+ - id: 88
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:51 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 77faed0a-334b-413a-b0c6-cf9f4a9aaeb2
+ status: 200 OK
+ code: 200
+ duration: 49.225432ms
+ - id: 89
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:51 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 27afa78c-37ce-41b9-b154-521286fabda5
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 59.918103ms
+ - id: 90
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:39.837220Z","updated_at":"2025-12-11T20:13:39.837220Z","references":[{"id":"250306cf-198a-4b07-9634-29e078a6647a","product_resource_type":"instance_server","product_resource_id":"b45de890-e769-4814-b26e-9397fe1eb829","created_at":"2025-12-11T20:13:39.837220Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:51 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 4749006c-0119-45de-803c-67ce2bc4766d
+ status: 200 OK
+ code: 200
+ duration: 57.248719ms
+ - id: 91
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/36b4ce54-c67a-4f68-ab74-839515834352
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 118
+ body: '{"details":[{"action":"read","resource":"snapshot"}],"message":"insufficient permissions","type":"permissions_denied"}'
+ headers:
+ Content-Length:
+ - "118"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:51 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - e4655a95-6bc6-413c-ab12-c213dad0d91b
+ status: 403 Forbidden
+ code: 403
+ duration: 57.032353ms
+ - id: 92
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1982
+ body: '{"server": {"id": "b45de890-e769-4814-b26e-9397fe1eb829", "name": "test-tf-action-instance-create-snapshot-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "bfd34cce-e506-4ab1-990d-6137c76c0118", "state": "available", "zone": "fr-par-1"}}, "tags": ["add", "tags", "to", "trigger", "update"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:99:f1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:13:39.742684+00:00", "modification_date": "2025-12-11T20:14:43.374403+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "602", "node_id": "17"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1982"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:52 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 6b1e64fc-dca6-4a06-abe3-2822a8bbb9da
+ status: 200 OK
+ code: 200
+ duration: 83.969259ms
+ - id: 93
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1982
+ body: '{"server": {"id": "b45de890-e769-4814-b26e-9397fe1eb829", "name": "test-tf-action-instance-create-snapshot-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "bfd34cce-e506-4ab1-990d-6137c76c0118", "state": "available", "zone": "fr-par-1"}}, "tags": ["add", "tags", "to", "trigger", "update"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:99:f1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:13:39.742684+00:00", "modification_date": "2025-12-11T20:14:43.374403+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "602", "node_id": "17"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1982"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:52 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 4a94fb50-976a-48a7-8d7b-bf4ecf293e00
+ status: 200 OK
+ code: 200
+ duration: 93.363781ms
+ - id: 94
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 22
+ host: api.scaleway.com
+ body: '{"action":"terminate"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 353
+ body: '{"task": {"id": "2c343522-a003-4646-9ca9-5db0f1a69f94", "description": "server_terminate", "status": "pending", "href_from": "/servers/b45de890-e769-4814-b26e-9397fe1eb829/action", "href_result": "/servers/b45de890-e769-4814-b26e-9397fe1eb829", "started_at": "2025-12-11T20:14:52.494841+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "353"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:52 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2c343522-a003-4646-9ca9-5db0f1a69f94
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 7ab68b09-01e9-4e90-be03-68484ae43b46
+ status: 202 Accepted
+ code: 202
+ duration: 200.935284ms
+ - id: 95
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1945
+ body: '{"server": {"id": "b45de890-e769-4814-b26e-9397fe1eb829", "name": "test-tf-action-instance-create-snapshot-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "bfd34cce-e506-4ab1-990d-6137c76c0118", "state": "available", "zone": "fr-par-1"}}, "tags": ["add", "tags", "to", "trigger", "update"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:99:f1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:13:39.742684+00:00", "modification_date": "2025-12-11T20:14:52.348535+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "602", "node_id": "17"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1945"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:52 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 0ac5907d-5848-409a-803c-e2f6519d0079
+ status: 200 OK
+ code: 200
+ duration: 92.396525ms
+ - id: 96
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "b45de890-e769-4814-b26e-9397fe1eb829"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:57 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - d93f6f26-f5bf-4360-a35f-28d68594809c
+ status: 404 Not Found
+ code: 404
+ duration: 57.462551ms
+ - id: 97
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "bfd34cce-e506-4ab1-990d-6137c76c0118"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:57 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 02219d43-0ed3-403e-8f15-caa429289434
+ status: 404 Not Found
+ code: 404
+ duration: 29.515819ms
+ - id: 98
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 484
+ body: '{"id":"bfd34cce-e506-4ab1-990d-6137c76c0118","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:39.837220Z","updated_at":"2025-12-11T20:14:53.761303Z","references":[],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"available","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":"2025-12-11T20:14:53.761303Z","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "484"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:57 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - b8a4a5bd-f7c7-4d79-8a52-b84886e06d66
+ status: 200 OK
+ code: 200
+ duration: 55.228596ms
+ - id: 99
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:57 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - c4c8cc01-dd30-41ff-ad01-4cb1bf00111e
+ status: 204 No Content
+ code: 204
+ duration: 91.020671ms
+ - id: 100
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b45de890-e769-4814-b26e-9397fe1eb829
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "b45de890-e769-4814-b26e-9397fe1eb829"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:57 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 93c0527c-e4ea-4be0-bdca-abe1d882d627
+ status: 404 Not Found
+ code: 404
+ duration: 55.295451ms
+ - id: 101
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ order_by:
+ - created_at_asc
+ page:
+ - "1"
+ volume_id:
+ - bfd34cce-e506-4ab1-990d-6137c76c0118
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots?order_by=created_at_asc&page=1&volume_id=bfd34cce-e506-4ab1-990d-6137c76c0118
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 734
+ body: '{"snapshots":[{"id":"72bce3ff-9901-4fac-8df7-7cf5c3d805ee","name":"snp-silly-hypatia","parent_volume":null,"size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:13:46.733566Z","updated_at":"2025-12-11T20:13:46.733566Z","references":[],"status":"available","tags":[],"class":"sbs","zone":"fr-par-1"},{"id":"31a8096d-b968-4c6f-bc27-15cb8ad4a1bb","name":"custom-name-for-snapshot","parent_volume":null,"size":20000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:14:44.359633Z","updated_at":"2025-12-11T20:14:44.359633Z","references":[],"status":"available","tags":["add","tags","to","trigger","update"],"class":"sbs","zone":"fr-par-1"}],"total_count":2}'
+ headers:
+ Content-Length:
+ - "734"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:57 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 95cbb6be-495c-4a2b-95f3-d8bf76958da0
+ status: 200 OK
+ code: 200
+ duration: 65.040111ms
+ - id: 102
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/72bce3ff-9901-4fac-8df7-7cf5c3d805ee
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - b780a100-a878-4d76-883d-ac1598a512f3
+ status: 204 No Content
+ code: 204
+ duration: 344.75061ms
+ - id: 103
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/31a8096d-b968-4c6f-bc27-15cb8ad4a1bb
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:14:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - e291d79e-ba0f-45fb-b323-959f6b491134
+ status: 204 No Content
+ code: 204
+ duration: 295.553952ms
diff --git a/internal/services/instance/testdata/action-instance-create-snapshot-scratch.cassette.yaml b/internal/services/instance/testdata/action-instance-create-snapshot-scratch.cassette.yaml
new file mode 100644
index 000000000..05ab2bf3f
--- /dev/null
+++ b/internal/services/instance/testdata/action-instance-create-snapshot-scratch.cassette.yaml
@@ -0,0 +1,198 @@
+---
+version: 2
+interactions:
+ - id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 150
+ host: api.scaleway.com
+ body: '{"name":"test-tf-action-instance-create-snapshot-scratch","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","volume_type":"scratch","size":50000000000}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 451
+ body: '{"volume": {"id": "ea118818-26c0-4c8f-b600-1d1baebb2a41", "name": "test-tf-action-instance-create-snapshot-scratch", "volume_type": "scratch", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": null, "size": 50000000000, "state": "available", "creation_date": "2025-12-11T21:28:08.847536+00:00", "modification_date": "2025-12-11T21:28:08.847536+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "451"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:08 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ea118818-26c0-4c8f-b600-1d1baebb2a41
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 455f8ed5-9661-4bc4-887d-0b78487c0f5d
+ status: 201 Created
+ code: 201
+ duration: 226.818419ms
+ - id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ea118818-26c0-4c8f-b600-1d1baebb2a41
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 451
+ body: '{"volume": {"id": "ea118818-26c0-4c8f-b600-1d1baebb2a41", "name": "test-tf-action-instance-create-snapshot-scratch", "volume_type": "scratch", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": null, "size": 50000000000, "state": "available", "creation_date": "2025-12-11T21:28:08.847536+00:00", "modification_date": "2025-12-11T21:28:08.847536+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "451"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 5813a588-31b1-45dd-bb97-12d799b655d5
+ status: 200 OK
+ code: 200
+ duration: 66.167822ms
+ - id: 2
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ea118818-26c0-4c8f-b600-1d1baebb2a41
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 451
+ body: '{"volume": {"id": "ea118818-26c0-4c8f-b600-1d1baebb2a41", "name": "test-tf-action-instance-create-snapshot-scratch", "volume_type": "scratch", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": null, "size": 50000000000, "state": "available", "creation_date": "2025-12-11T21:28:08.847536+00:00", "modification_date": "2025-12-11T21:28:08.847536+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "451"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:09 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - e49be66b-8ff1-4a64-897a-9d5c3561fb4d
+ status: 200 OK
+ code: 200
+ duration: 53.648373ms
+ - id: 3
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ea118818-26c0-4c8f-b600-1d1baebb2a41
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 451
+ body: '{"volume": {"id": "ea118818-26c0-4c8f-b600-1d1baebb2a41", "name": "test-tf-action-instance-create-snapshot-scratch", "volume_type": "scratch", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": null, "size": 50000000000, "state": "available", "creation_date": "2025-12-11T21:28:08.847536+00:00", "modification_date": "2025-12-11T21:28:08.847536+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "451"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:09 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - b85ddad9-26e1-4369-b798-405aecb9fc3d
+ status: 200 OK
+ code: 200
+ duration: 59.293663ms
+ - id: 4
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ea118818-26c0-4c8f-b600-1d1baebb2a41
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 451
+ body: '{"volume": {"id": "ea118818-26c0-4c8f-b600-1d1baebb2a41", "name": "test-tf-action-instance-create-snapshot-scratch", "volume_type": "scratch", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": null, "size": 50000000000, "state": "available", "creation_date": "2025-12-11T21:28:08.847536+00:00", "modification_date": "2025-12-11T21:28:08.847536+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "451"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:09 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - eb933829-8451-4894-be2c-70ab2f98b8c4
+ status: 200 OK
+ code: 200
+ duration: 51.23618ms
+ - id: 5
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ea118818-26c0-4c8f-b600-1d1baebb2a41
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:09 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - cbc32828-8fc4-4a61-abd8-64c9fbafae85
+ status: 204 No Content
+ code: 204
+ duration: 139.417793ms
diff --git a/internal/services/instance/testdata/action-instance-create-snapshot-zone.cassette.yaml b/internal/services/instance/testdata/action-instance-create-snapshot-zone.cassette.yaml
new file mode 100644
index 000000000..88e7f07ef
--- /dev/null
+++ b/internal/services/instance/testdata/action-instance-create-snapshot-zone.cassette.yaml
@@ -0,0 +1,1838 @@
+---
+version: 2
+interactions:
+ - id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ page:
+ - "1"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/products/servers?page=1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 40317
+ body: '{"servers": {"B300-SXM-8-288G": {"alt_names": [], "arch": "x86_64", "ncpus": 224, "ram": 4123168604160, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "B300-SXM", "gpu_memory": 309237645312}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 24000000000000, "monthly_price": 43800.0, "hourly_price": 60.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "BASIC2-A16C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.89, "hourly_price": 0.2067, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 201.19, "hourly_price": 0.2756, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A2C-4G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 16.79, "hourly_price": 0.023, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 25.19, "hourly_price": 0.0345, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 50.3, "hourly_price": 0.0689, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A4C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 37.74, "hourly_price": 0.0517, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A8C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.48, "hourly_price": 0.1034, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "BASIC2-A8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 100.59, "hourly_price": 0.1378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 30.66, "hourly_price": 0.042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.454, "hourly_price": 0.0198, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.424, "hourly_price": 0.0088, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 46.5734, "hourly_price": 0.06378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 554.07, "hourly_price": 0.759, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 274.48, "hourly_price": 0.376, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 136.51, "hourly_price": 0.187, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1197.93, "hourly_price": 1.641, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 66.43, "hourly_price": 0.091, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "GPU-3070-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "RTX-3070", "gpu_memory": 8589934592}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 715.4, "hourly_price": 0.98, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "H100-1-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 24, "ram": 257698037760, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3000000000000, "monthly_price": 1992.9, "hourly_price": 2.73, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "H100-1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 24, "ram": 257698037760, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3000000000000, "monthly_price": 3066.0, "hourly_price": 4.2, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "H100-2-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 515396075520, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6000000000000, "monthly_price": 3985.8, "hourly_price": 5.46, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 4194304000, "end_of_service": false}, "H100-2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 515396075520, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-PCIe", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6000000000000, "monthly_price": 6132.0, "hourly_price": 8.4, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 4194304000, "end_of_service": false}, "H100-SXM-2-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 257698037760, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-SXM", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3200000000000, "monthly_price": 4393.14, "hourly_price": 6.018, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "H100-SXM-4-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 515396075520, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-SXM", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6400000000000, "monthly_price": 8475.3, "hourly_price": 11.61, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "H100-SXM-8-80G": {"alt_names": [], "arch": "x86_64", "ncpus": 128, "ram": 1030792151040, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "H100-SXM", "gpu_memory": 85899345920}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 12800000000000, "monthly_price": 16810.44, "hourly_price": 23.028, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "L40S-1-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 103079215104, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 1600000000000, "monthly_price": 1022.0, "hourly_price": 1.4, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L40S-2-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 206158430208, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 3200000000000, "monthly_price": 2044.0, "hourly_price": 2.8, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L40S-4-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 412316860416, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 6400000000000, "monthly_price": 4088.0, "hourly_price": 5.6, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L40S-8-48G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 824633720832, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L40S", "gpu_memory": 51539607552}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 12800000000000, "monthly_price": 8176.0, "hourly_price": 11.2, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}}}'
+ headers:
+ Content-Length:
+ - "40317"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:49 GMT
+ Link:
+ - ; rel="next",; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 036e21bb-e8e7-477b-b558-20ecd62719a5
+ X-Total-Count:
+ - "77"
+ status: 200 OK
+ code: 200
+ duration: 119.951972ms
+ - id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ page:
+ - "2"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/products/servers?page=2
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 21046
+ body: '{"servers": {"POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 891.33, "hourly_price": 1.221, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}}}'
+ headers:
+ Content-Length:
+ - "21046"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:49 GMT
+ Link:
+ - ; rel="first",; rel="previous",; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 88cf3a02-91df-4050-b387-23f038ce5adf
+ X-Total-Count:
+ - "77"
+ status: 200 OK
+ code: 200
+ duration: 54.702516ms
+ - id: 2
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ image_label:
+ - ubuntu_jammy
+ order_by:
+ - type_asc
+ type:
+ - instance_local
+ zone:
+ - fr-par-2
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_local&zone=fr-par-2
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 272
+ body: '{"local_images":[{"id":"807e3830-c5ab-4018-8571-326e55d96295","arch":"x86_64","zone":"fr-par-2","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS"],"label":"ubuntu_jammy","type":"instance_local"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "272"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:49 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 0d157e66-1705-4ef7-b328-9606966c5965
+ status: 200 OK
+ code: 200
+ duration: 121.730935ms
+ - id: 3
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 298
+ host: api.scaleway.com
+ body: '{"name":"test-tf-action-instance-create-snapshot-zone","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"807e3830-c5ab-4018-8571-326e55d96295","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2218
+ body: '{"server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-zone", "image": {"id": "807e3830-c5ab-4018-8571-326e55d96295", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a31c0335-14ca-45b5-97d3-1a307eed3dd1", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:37.132337+00:00", "modification_date": "2025-09-12T09:11:37.132337+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:27:49.350174+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:96:da:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:27:49.350174+00:00", "bootscript": null, "security_group": {"id": "22961510-2391-4fc7-83bd-d4c9d2d5c7fd", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2218"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:49 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/dc3dbba5-8768-476d-b379-dfabfbce478a
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 6202c490-f0cb-4a39-84a2-8574974d8a0f
+ status: 201 Created
+ code: 201
+ duration: 278.294794ms
+ - id: 4
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/dc3dbba5-8768-476d-b379-dfabfbce478a
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2218
+ body: '{"server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-zone", "image": {"id": "807e3830-c5ab-4018-8571-326e55d96295", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a31c0335-14ca-45b5-97d3-1a307eed3dd1", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:37.132337+00:00", "modification_date": "2025-09-12T09:11:37.132337+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:27:49.350174+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:96:da:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:27:49.350174+00:00", "bootscript": null, "security_group": {"id": "22961510-2391-4fc7-83bd-d4c9d2d5c7fd", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2218"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:49 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 2ac81ac5-d820-4f5e-b292-32ad1b67ea2b
+ status: 200 OK
+ code: 200
+ duration: 101.217093ms
+ - id: 5
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/dc3dbba5-8768-476d-b379-dfabfbce478a
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2218
+ body: '{"server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-zone", "image": {"id": "807e3830-c5ab-4018-8571-326e55d96295", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a31c0335-14ca-45b5-97d3-1a307eed3dd1", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:37.132337+00:00", "modification_date": "2025-09-12T09:11:37.132337+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:27:49.350174+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:96:da:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:27:49.350174+00:00", "bootscript": null, "security_group": {"id": "22961510-2391-4fc7-83bd-d4c9d2d5c7fd", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2218"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:49 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 8226451c-9bdd-496e-9bcf-6e8c190befb9
+ status: 200 OK
+ code: 200
+ duration: 105.524167ms
+ - id: 6
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 20
+ host: api.scaleway.com
+ body: '{"action":"poweron"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/dc3dbba5-8768-476d-b379-dfabfbce478a/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 357
+ body: '{"task": {"id": "231da1f9-eba8-4f98-a39a-a3eab02ff8c5", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/dc3dbba5-8768-476d-b379-dfabfbce478a/action", "href_result": "/servers/dc3dbba5-8768-476d-b379-dfabfbce478a", "started_at": "2025-12-11T21:27:49.917184+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-2"}}'
+ headers:
+ Content-Length:
+ - "357"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:49 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/231da1f9-eba8-4f98-a39a-a3eab02ff8c5
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 9fe28ac2-6c76-4dda-8856-cd584be7e312
+ status: 202 Accepted
+ code: 202
+ duration: 222.931106ms
+ - id: 7
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/dc3dbba5-8768-476d-b379-dfabfbce478a
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2240
+ body: '{"server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-zone", "image": {"id": "807e3830-c5ab-4018-8571-326e55d96295", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a31c0335-14ca-45b5-97d3-1a307eed3dd1", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:37.132337+00:00", "modification_date": "2025-09-12T09:11:37.132337+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:27:49.350174+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:96:da:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:27:49.756351+00:00", "bootscript": null, "security_group": {"id": "22961510-2391-4fc7-83bd-d4c9d2d5c7fd", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2240"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 3f139b4b-bce7-4454-bd74-e2243842db4f
+ status: 200 OK
+ code: 200
+ duration: 101.549427ms
+ - id: 8
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/dc3dbba5-8768-476d-b379-dfabfbce478a
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2342
+ body: '{"server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-zone", "image": {"id": "807e3830-c5ab-4018-8571-326e55d96295", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a31c0335-14ca-45b5-97d3-1a307eed3dd1", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:37.132337+00:00", "modification_date": "2025-09-12T09:11:37.132337+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:27:49.350174+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:96:da:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:27:49.756351+00:00", "bootscript": null, "security_group": {"id": "22961510-2391-4fc7-83bd-d4c9d2d5c7fd", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "21", "hypervisor_id": "101", "node_id": "8"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2342"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:55 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 0d1bf651-054e-4ae1-bfdd-05af266b3def
+ status: 200 OK
+ code: 200
+ duration: 82.14572ms
+ - id: 9
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/dc3dbba5-8768-476d-b379-dfabfbce478a
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2373
+ body: '{"server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-zone", "image": {"id": "807e3830-c5ab-4018-8571-326e55d96295", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a31c0335-14ca-45b5-97d3-1a307eed3dd1", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:37.132337+00:00", "modification_date": "2025-09-12T09:11:37.132337+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:27:49.350174+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:96:da:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:27:59.515895+00:00", "bootscript": null, "security_group": {"id": "22961510-2391-4fc7-83bd-d4c9d2d5c7fd", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "21", "hypervisor_id": "101", "node_id": "8"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2373"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:00 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 7877231f-a43c-4737-98da-b8fed316476b
+ status: 200 OK
+ code: 200
+ duration: 77.746121ms
+ - id: 10
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/dc3dbba5-8768-476d-b379-dfabfbce478a
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2373
+ body: '{"server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-zone", "image": {"id": "807e3830-c5ab-4018-8571-326e55d96295", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a31c0335-14ca-45b5-97d3-1a307eed3dd1", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:37.132337+00:00", "modification_date": "2025-09-12T09:11:37.132337+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:27:49.350174+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:96:da:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:27:59.515895+00:00", "bootscript": null, "security_group": {"id": "22961510-2391-4fc7-83bd-d4c9d2d5c7fd", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "21", "hypervisor_id": "101", "node_id": "8"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2373"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:00 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 15629d35-64e8-4941-907c-83c584d25685
+ status: 200 OK
+ code: 200
+ duration: 80.115394ms
+ - id: 11
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/a72ceac2-3899-4de4-9fb7-20f42500f9c8
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 528
+ body: '{"volume": {"id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:27:49.350174+00:00", "tags": [], "zone": "fr-par-2"}}'
+ headers:
+ Content-Length:
+ - "528"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:00 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - f3ce6681-bfbb-4208-977e-10597e0c3db7
+ status: 200 OK
+ code: 200
+ duration: 51.345005ms
+ - id: 12
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/dc3dbba5-8768-476d-b379-dfabfbce478a/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:00 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - e7134cd8-bdfd-47cc-9c0a-db0b82dffc85
+ status: 200 OK
+ code: 200
+ duration: 63.98545ms
+ - id: 13
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/dc3dbba5-8768-476d-b379-dfabfbce478a/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:00 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 03e5fda9-d0e9-4459-9581-d4ef70c356ee
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 42.980084ms
+ - id: 14
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/a72ceac2-3899-4de4-9fb7-20f42500f9c8
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 528
+ body: '{"volume": {"id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:27:49.350174+00:00", "tags": [], "zone": "fr-par-2"}}'
+ headers:
+ Content-Length:
+ - "528"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:00 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 98795663-7591-434d-a7db-0d757ccdab70
+ status: 200 OK
+ code: 200
+ duration: 60.561386ms
+ - id: 15
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/a72ceac2-3899-4de4-9fb7-20f42500f9c8
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 528
+ body: '{"volume": {"id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:27:49.350174+00:00", "tags": [], "zone": "fr-par-2"}}'
+ headers:
+ Content-Length:
+ - "528"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:00 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 9431b991-6300-48bd-8ea1-f72e99573ca1
+ status: 200 OK
+ code: 200
+ duration: 67.508171ms
+ - id: 16
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 130
+ host: api.scaleway.com
+ body: '{"name":"snp-adoring-haslett","volume_id":"a72ceac2-3899-4de4-9fb7-20f42500f9c8","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/snapshots
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 847
+ body: '{"snapshot": {"id": "6b89c3ab-d13c-4eab-925f-a638815aa581", "name": "snp-adoring-haslett", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:28:00.590492+00:00", "modification_date": "2025-12-11T21:28:00.590492+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-2", "error_details": null}, "task": {"id": "3d594fcf-1a8d-4eb2-aa7b-d4a47c2e27b1", "description": "volume_snapshot", "status": "pending", "href_from": "/snapshots", "href_result": "snapshots/6b89c3ab-d13c-4eab-925f-a638815aa581", "started_at": "2025-12-11T21:28:00.841510+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-2"}}'
+ headers:
+ Content-Length:
+ - "847"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:00 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - b60d20d9-6758-4228-9927-feca8766f5ea
+ status: 201 Created
+ code: 201
+ duration: 442.312678ms
+ - id: 17
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/snapshots/6b89c3ab-d13c-4eab-925f-a638815aa581
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 536
+ body: '{"snapshot": {"id": "6b89c3ab-d13c-4eab-925f-a638815aa581", "name": "snp-adoring-haslett", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:28:00.590492+00:00", "modification_date": "2025-12-11T21:28:00.590492+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "536"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:01 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 829ae616-a165-4f43-a81d-e4d0c29e60c8
+ status: 200 OK
+ code: 200
+ duration: 64.392084ms
+ - id: 18
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/snapshots/6b89c3ab-d13c-4eab-925f-a638815aa581
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 536
+ body: '{"snapshot": {"id": "6b89c3ab-d13c-4eab-925f-a638815aa581", "name": "snp-adoring-haslett", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:28:00.590492+00:00", "modification_date": "2025-12-11T21:28:00.590492+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "536"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:06 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 23633f10-89ba-4dcf-8ef6-595269e100fe
+ status: 200 OK
+ code: 200
+ duration: 409.700014ms
+ - id: 19
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/snapshots/6b89c3ab-d13c-4eab-925f-a638815aa581
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 536
+ body: '{"snapshot": {"id": "6b89c3ab-d13c-4eab-925f-a638815aa581", "name": "snp-adoring-haslett", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:28:00.590492+00:00", "modification_date": "2025-12-11T21:28:00.590492+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "536"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:11 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - bece7ae7-91be-47d3-a477-a7a95c12e9da
+ status: 200 OK
+ code: 200
+ duration: 70.611773ms
+ - id: 20
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/snapshots/6b89c3ab-d13c-4eab-925f-a638815aa581
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 536
+ body: '{"snapshot": {"id": "6b89c3ab-d13c-4eab-925f-a638815aa581", "name": "snp-adoring-haslett", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:28:00.590492+00:00", "modification_date": "2025-12-11T21:28:00.590492+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "536"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:16 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 93bcc87f-1e62-468f-8b74-a694876597b5
+ status: 200 OK
+ code: 200
+ duration: 71.180302ms
+ - id: 21
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/snapshots/6b89c3ab-d13c-4eab-925f-a638815aa581
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 536
+ body: '{"snapshot": {"id": "6b89c3ab-d13c-4eab-925f-a638815aa581", "name": "snp-adoring-haslett", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:28:00.590492+00:00", "modification_date": "2025-12-11T21:28:00.590492+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "536"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:21 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 58cdcc41-49f9-49f8-ae5d-8fd6129ecc00
+ status: 200 OK
+ code: 200
+ duration: 72.947001ms
+ - id: 22
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/snapshots/6b89c3ab-d13c-4eab-925f-a638815aa581
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 536
+ body: '{"snapshot": {"id": "6b89c3ab-d13c-4eab-925f-a638815aa581", "name": "snp-adoring-haslett", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:28:00.590492+00:00", "modification_date": "2025-12-11T21:28:00.590492+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "536"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:26 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 12fbb5a4-40ea-47a6-a872-8574869c23bf
+ status: 200 OK
+ code: 200
+ duration: 69.711351ms
+ - id: 23
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/snapshots/6b89c3ab-d13c-4eab-925f-a638815aa581
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 536
+ body: '{"snapshot": {"id": "6b89c3ab-d13c-4eab-925f-a638815aa581", "name": "snp-adoring-haslett", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:28:00.590492+00:00", "modification_date": "2025-12-11T21:28:00.590492+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "536"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:31 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 4bdad4e5-cc0c-4616-a573-1bee9969c176
+ status: 200 OK
+ code: 200
+ duration: 66.169464ms
+ - id: 24
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/snapshots/6b89c3ab-d13c-4eab-925f-a638815aa581
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 536
+ body: '{"snapshot": {"id": "6b89c3ab-d13c-4eab-925f-a638815aa581", "name": "snp-adoring-haslett", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:28:00.590492+00:00", "modification_date": "2025-12-11T21:28:00.590492+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "536"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:36 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 6d41772f-792a-4ea6-80b3-0e5943330ed1
+ status: 200 OK
+ code: 200
+ duration: 48.154828ms
+ - id: 25
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/snapshots/6b89c3ab-d13c-4eab-925f-a638815aa581
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 536
+ body: '{"snapshot": {"id": "6b89c3ab-d13c-4eab-925f-a638815aa581", "name": "snp-adoring-haslett", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:28:00.590492+00:00", "modification_date": "2025-12-11T21:28:00.590492+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "536"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:42 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - a6b4dcd4-cdfd-4d6b-ad10-2ea71746fbdd
+ status: 200 OK
+ code: 200
+ duration: 117.384433ms
+ - id: 26
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/snapshots/6b89c3ab-d13c-4eab-925f-a638815aa581
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 536
+ body: '{"snapshot": {"id": "6b89c3ab-d13c-4eab-925f-a638815aa581", "name": "snp-adoring-haslett", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:28:00.590492+00:00", "modification_date": "2025-12-11T21:28:00.590492+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "snapshotting", "base_volume": {"id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "536"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:47 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - cc83eb6f-f2f5-431c-9b0e-08d3955a1869
+ status: 200 OK
+ code: 200
+ duration: 53.24269ms
+ - id: 27
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/snapshots/6b89c3ab-d13c-4eab-925f-a638815aa581
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 533
+ body: '{"snapshot": {"id": "6b89c3ab-d13c-4eab-925f-a638815aa581", "name": "snp-adoring-haslett", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:28:00.590492+00:00", "modification_date": "2025-12-11T21:28:49.175545+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "available", "base_volume": {"id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "533"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:52 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 14daef0d-674c-4798-a36f-f8c409e5d1ed
+ status: 200 OK
+ code: 200
+ duration: 75.842262ms
+ - id: 28
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/a72ceac2-3899-4de4-9fb7-20f42500f9c8
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 528
+ body: '{"volume": {"id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:28:49.175545+00:00", "tags": [], "zone": "fr-par-2"}}'
+ headers:
+ Content-Length:
+ - "528"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:52 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - ea1d5fd7-6513-4d15-ad0d-50bfcfd95aa9
+ status: 200 OK
+ code: 200
+ duration: 68.058382ms
+ - id: 29
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/dc3dbba5-8768-476d-b379-dfabfbce478a
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2373
+ body: '{"server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-zone", "image": {"id": "807e3830-c5ab-4018-8571-326e55d96295", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a31c0335-14ca-45b5-97d3-1a307eed3dd1", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:37.132337+00:00", "modification_date": "2025-09-12T09:11:37.132337+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:28:49.175545+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:96:da:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:27:59.515895+00:00", "bootscript": null, "security_group": {"id": "22961510-2391-4fc7-83bd-d4c9d2d5c7fd", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "21", "hypervisor_id": "101", "node_id": "8"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2373"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:52 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - bdb95546-f17f-4e5f-b822-fa3e6f971a1f
+ status: 200 OK
+ code: 200
+ duration: 90.46344ms
+ - id: 30
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/a72ceac2-3899-4de4-9fb7-20f42500f9c8
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 528
+ body: '{"volume": {"id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:28:49.175545+00:00", "tags": [], "zone": "fr-par-2"}}'
+ headers:
+ Content-Length:
+ - "528"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:52 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - b91bd40e-aa3e-46ed-a58f-679c5b0a901e
+ status: 200 OK
+ code: 200
+ duration: 70.204216ms
+ - id: 31
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/dc3dbba5-8768-476d-b379-dfabfbce478a/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:52 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 1367097c-da16-437a-9a53-a9f850d5efa3
+ status: 200 OK
+ code: 200
+ duration: 64.726791ms
+ - id: 32
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/dc3dbba5-8768-476d-b379-dfabfbce478a/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:52 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - e21930fa-fc76-4bee-908d-41d3582885f0
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 66.666608ms
+ - id: 33
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/a72ceac2-3899-4de4-9fb7-20f42500f9c8
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 528
+ body: '{"volume": {"id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:28:49.175545+00:00", "tags": [], "zone": "fr-par-2"}}'
+ headers:
+ Content-Length:
+ - "528"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:52 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 3673b8f1-6928-4f25-bf72-5d7666274aa7
+ status: 200 OK
+ code: 200
+ duration: 54.367074ms
+ - id: 34
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/dc3dbba5-8768-476d-b379-dfabfbce478a
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2373
+ body: '{"server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-zone", "image": {"id": "807e3830-c5ab-4018-8571-326e55d96295", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a31c0335-14ca-45b5-97d3-1a307eed3dd1", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:37.132337+00:00", "modification_date": "2025-09-12T09:11:37.132337+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:28:49.175545+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:96:da:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:27:59.515895+00:00", "bootscript": null, "security_group": {"id": "22961510-2391-4fc7-83bd-d4c9d2d5c7fd", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "21", "hypervisor_id": "101", "node_id": "8"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2373"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:53 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - b842cfa2-03e2-4312-a11a-7c4e588c4b70
+ status: 200 OK
+ code: 200
+ duration: 76.735741ms
+ - id: 35
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/a72ceac2-3899-4de4-9fb7-20f42500f9c8
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 528
+ body: '{"volume": {"id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:28:49.175545+00:00", "tags": [], "zone": "fr-par-2"}}'
+ headers:
+ Content-Length:
+ - "528"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:53 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 3979031a-c2b5-4dde-ad4f-b998749ba64b
+ status: 200 OK
+ code: 200
+ duration: 48.609773ms
+ - id: 36
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/dc3dbba5-8768-476d-b379-dfabfbce478a/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:53 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - a4733df7-ffed-4ee9-99b5-ab2dcfd691d8
+ status: 200 OK
+ code: 200
+ duration: 54.712352ms
+ - id: 37
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/dc3dbba5-8768-476d-b379-dfabfbce478a/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:53 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 2b3d64a2-d5f1-42b4-901c-01c74ca2488e
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 48.871454ms
+ - id: 38
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/a72ceac2-3899-4de4-9fb7-20f42500f9c8
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 528
+ body: '{"volume": {"id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:28:49.175545+00:00", "tags": [], "zone": "fr-par-2"}}'
+ headers:
+ Content-Length:
+ - "528"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:53 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 24865a6f-7953-4870-8d7c-f1e8aee8e510
+ status: 200 OK
+ code: 200
+ duration: 60.978698ms
+ - id: 39
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/a72ceac2-3899-4de4-9fb7-20f42500f9c8
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 528
+ body: '{"volume": {"id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:28:49.175545+00:00", "tags": [], "zone": "fr-par-2"}}'
+ headers:
+ Content-Length:
+ - "528"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:53 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 2a3215ad-7513-4039-a233-083561c2c110
+ status: 200 OK
+ code: 200
+ duration: 49.376985ms
+ - id: 40
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ base_volume_id:
+ - a72ceac2-3899-4de4-9fb7-20f42500f9c8
+ page:
+ - "1"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/snapshots?base_volume_id=a72ceac2-3899-4de4-9fb7-20f42500f9c8&page=1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 536
+ body: '{"snapshots": [{"id": "6b89c3ab-d13c-4eab-925f-a638815aa581", "name": "snp-adoring-haslett", "volume_type": "l_ssd", "creation_date": "2025-12-11T21:28:00.590492+00:00", "modification_date": "2025-12-11T21:28:49.175545+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 20000000000, "state": "available", "base_volume": {"id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-2", "error_details": null}]}'
+ headers:
+ Content-Length:
+ - "536"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:53 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 53a22f40-8a1a-44ec-90c4-f541fdff7109
+ X-Total-Count:
+ - "1"
+ status: 200 OK
+ code: 200
+ duration: 95.521745ms
+ - id: 41
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/dc3dbba5-8768-476d-b379-dfabfbce478a
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2373
+ body: '{"server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-zone", "image": {"id": "807e3830-c5ab-4018-8571-326e55d96295", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a31c0335-14ca-45b5-97d3-1a307eed3dd1", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:37.132337+00:00", "modification_date": "2025-09-12T09:11:37.132337+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:28:49.175545+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:96:da:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:27:59.515895+00:00", "bootscript": null, "security_group": {"id": "22961510-2391-4fc7-83bd-d4c9d2d5c7fd", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "21", "hypervisor_id": "101", "node_id": "8"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2373"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:53 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - e77dbf34-8dd5-4798-aade-25bfe00ec8b4
+ status: 200 OK
+ code: 200
+ duration: 122.815609ms
+ - id: 42
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/a72ceac2-3899-4de4-9fb7-20f42500f9c8
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 528
+ body: '{"volume": {"id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:28:49.175545+00:00", "tags": [], "zone": "fr-par-2"}}'
+ headers:
+ Content-Length:
+ - "528"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:53 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - aa1897f1-1e7c-440d-9eb1-c7ad9601ec04
+ status: 200 OK
+ code: 200
+ duration: 48.416129ms
+ - id: 43
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/dc3dbba5-8768-476d-b379-dfabfbce478a/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:53 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 2bd0c560-b17d-4ac4-9a42-dcff044525d1
+ status: 200 OK
+ code: 200
+ duration: 64.335377ms
+ - id: 44
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/dc3dbba5-8768-476d-b379-dfabfbce478a/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:53 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 14007ded-1d0a-44f7-a199-f687cd82a9c3
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 48.899327ms
+ - id: 45
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/a72ceac2-3899-4de4-9fb7-20f42500f9c8
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 528
+ body: '{"volume": {"id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:28:49.175545+00:00", "tags": [], "zone": "fr-par-2"}}'
+ headers:
+ Content-Length:
+ - "528"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:53 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - c8ce0cb6-80e4-43cc-856a-6db4f5608fef
+ status: 200 OK
+ code: 200
+ duration: 48.733776ms
+ - id: 46
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/dc3dbba5-8768-476d-b379-dfabfbce478a
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2373
+ body: '{"server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-zone", "image": {"id": "807e3830-c5ab-4018-8571-326e55d96295", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a31c0335-14ca-45b5-97d3-1a307eed3dd1", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:37.132337+00:00", "modification_date": "2025-09-12T09:11:37.132337+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:28:49.175545+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:96:da:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:27:59.515895+00:00", "bootscript": null, "security_group": {"id": "22961510-2391-4fc7-83bd-d4c9d2d5c7fd", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "21", "hypervisor_id": "101", "node_id": "8"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2373"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:54 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 350b11b7-abf8-450c-bc6b-6b19b9a7b55c
+ status: 200 OK
+ code: 200
+ duration: 91.404828ms
+ - id: 47
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/dc3dbba5-8768-476d-b379-dfabfbce478a
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2373
+ body: '{"server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-zone", "image": {"id": "807e3830-c5ab-4018-8571-326e55d96295", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a31c0335-14ca-45b5-97d3-1a307eed3dd1", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:37.132337+00:00", "modification_date": "2025-09-12T09:11:37.132337+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:28:49.175545+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:96:da:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:27:59.515895+00:00", "bootscript": null, "security_group": {"id": "22961510-2391-4fc7-83bd-d4c9d2d5c7fd", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "21", "hypervisor_id": "101", "node_id": "8"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2373"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:54 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 11ee65f6-66e1-469a-a3fa-a45d430732b2
+ status: 200 OK
+ code: 200
+ duration: 73.716857ms
+ - id: 48
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 22
+ host: api.scaleway.com
+ body: '{"action":"terminate"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/dc3dbba5-8768-476d-b379-dfabfbce478a/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 353
+ body: '{"task": {"id": "1346b51f-79db-47de-949c-4657acbab8a3", "description": "server_terminate", "status": "pending", "href_from": "/servers/dc3dbba5-8768-476d-b379-dfabfbce478a/action", "href_result": "/servers/dc3dbba5-8768-476d-b379-dfabfbce478a", "started_at": "2025-12-11T21:28:54.361441+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-2"}}'
+ headers:
+ Content-Length:
+ - "353"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:54 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/1346b51f-79db-47de-949c-4657acbab8a3
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 013b1205-5350-418d-b941-792a3783afaf
+ status: 202 Accepted
+ code: 202
+ duration: 202.550596ms
+ - id: 49
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/dc3dbba5-8768-476d-b379-dfabfbce478a
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2336
+ body: '{"server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-create-snapshot-zone", "image": {"id": "807e3830-c5ab-4018-8571-326e55d96295", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a31c0335-14ca-45b5-97d3-1a307eed3dd1", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:37.132337+00:00", "modification_date": "2025-09-12T09:11:37.132337+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-2"}, "volumes": {"0": {"boot": false, "id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "dc3dbba5-8768-476d-b379-dfabfbce478a", "name": "test-tf-action-instance-create-snapshot-zone"}, "size": 20000000000, "state": "available", "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:28:49.175545+00:00", "tags": [], "zone": "fr-par-2"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:96:da:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:49.350174+00:00", "modification_date": "2025-12-11T21:28:54.235587+00:00", "bootscript": null, "security_group": {"id": "22961510-2391-4fc7-83bd-d4c9d2d5c7fd", "name": "Default security group"}, "location": {"zone_id": "fr-par-2", "platform_id": "30", "cluster_id": "21", "hypervisor_id": "101", "node_id": "8"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2336"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:54 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - bf36325e-3c7c-4b7d-a463-be532a721179
+ status: 200 OK
+ code: 200
+ duration: 67.989873ms
+ - id: 50
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/dc3dbba5-8768-476d-b379-dfabfbce478a
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "dc3dbba5-8768-476d-b379-dfabfbce478a"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:59 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - df189933-4a35-498b-8b60-6ae14fd45459
+ status: 404 Not Found
+ code: 404
+ duration: 63.604192ms
+ - id: 51
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/a72ceac2-3899-4de4-9fb7-20f42500f9c8
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a72ceac2-3899-4de4-9fb7-20f42500f9c8"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:59 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - e075c52e-b65a-44b3-a3da-927ec4bc7690
+ status: 404 Not Found
+ code: 404
+ duration: 30.805313ms
+ - id: 52
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/a72ceac2-3899-4de4-9fb7-20f42500f9c8
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 127
+ body: '{"message":"resource is not found","resource":"volume","resource_id":"a72ceac2-3899-4de4-9fb7-20f42500f9c8","type":"not_found"}'
+ headers:
+ Content-Length:
+ - "127"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:59 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 00dee632-b4a0-4daf-8b21-ef547ae071d4
+ status: 404 Not Found
+ code: 404
+ duration: 24.81741ms
+ - id: 53
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/dc3dbba5-8768-476d-b379-dfabfbce478a
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "dc3dbba5-8768-476d-b379-dfabfbce478a"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:59 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 1933e7ca-e934-44ac-b570-5a626ed867dd
+ status: 404 Not Found
+ code: 404
+ duration: 52.53012ms
+ - id: 54
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ base_volume_id:
+ - a72ceac2-3899-4de4-9fb7-20f42500f9c8
+ page:
+ - "1"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-2/snapshots?base_volume_id=a72ceac2-3899-4de4-9fb7-20f42500f9c8&page=1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"snapshots": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:59 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 4aababd4-f09f-4852-930a-1c1a13c1fbfc
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 71.12741ms
diff --git a/internal/services/instance/testdata/action-instance-export-snapshot-local.cassette.yaml b/internal/services/instance/testdata/action-instance-export-snapshot-local.cassette.yaml
new file mode 100644
index 000000000..48fefbb7e
--- /dev/null
+++ b/internal/services/instance/testdata/action-instance-export-snapshot-local.cassette.yaml
@@ -0,0 +1,4943 @@
+---
+version: 2
+interactions:
+ - id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ page:
+ - "1"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 39202
+ body: '{"servers": {"BASIC2-A16C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.89, "hourly_price": 0.2067, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 201.19, "hourly_price": 0.2756, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A2C-4G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 16.79, "hourly_price": 0.023, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 25.19, "hourly_price": 0.0345, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 50.3, "hourly_price": 0.0689, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A4C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 37.74, "hourly_price": 0.0517, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A8C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.48, "hourly_price": 0.1034, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "BASIC2-A8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 100.59, "hourly_price": 0.1378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 30.66, "hourly_price": 0.042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.454, "hourly_price": 0.0198, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.424, "hourly_price": 0.0088, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 46.5734, "hourly_price": 0.06378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 554.07, "hourly_price": 0.759, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 274.48, "hourly_price": 0.376, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 136.51, "hourly_price": 0.187, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1197.93, "hourly_price": 1.641, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 66.43, "hourly_price": 0.091, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}}}'
+ headers:
+ Content-Length:
+ - "39202"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:49:43 GMT
+ Link:
+ - ; rel="next",; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 60092467-afe3-4548-8023-caad799ff84c
+ X-Total-Count:
+ - "76"
+ status: 200 OK
+ code: 200
+ duration: 90.189865ms
+ - id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ page:
+ - "2"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20510
+ body: '{"servers": {"POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 891.33, "hourly_price": 1.221, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 0.1095, "hourly_price": 0.00015, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}'
+ headers:
+ Content-Length:
+ - "20510"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:49:43 GMT
+ Link:
+ - ; rel="first",; rel="previous",; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 1fa7197f-2958-45c7-8ff5-cd8f27d7814b
+ X-Total-Count:
+ - "76"
+ status: 200 OK
+ code: 200
+ duration: 80.815277ms
+ - id: 2
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ image_label:
+ - ubuntu_jammy
+ order_by:
+ - type_asc
+ type:
+ - instance_local
+ zone:
+ - fr-par-1
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_local&zone=fr-par-1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 397
+ body: '{"local_images":[{"id":"ec31d73d-ca36-4536-adf4-0feb76d30379","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"label":"ubuntu_jammy","type":"instance_local"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "397"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:49:43 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - ee0e9351-3328-42e4-a1a0-38622f1d5496
+ status: 200 OK
+ code: 200
+ duration: 65.963684ms
+ - id: 3
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 2d964919-c15c-43c2-98dd-04695e31096d
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204943Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/
+ method: PUT
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Content-Length:
+ - "0"
+ Date:
+ - Thu, 11 Dec 2025 20:49:43 GMT
+ Location:
+ - /test-acc-action-instance-export-snap-local-771354746101313227
+ X-Amz-Id-2:
+ - txgfe90a32832474de59612-00693b2e67
+ X-Amz-Request-Id:
+ - txgfe90a32832474de59612-00693b2e67
+ status: 200 OK
+ code: 200
+ duration: 510.672153ms
+ - id: 4
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 445d093f-ec38-4ab7-a6a7-f2d90e877c76
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,Z,e
+ X-Amz-Acl:
+ - private
+ X-Amz-Checksum-Crc32:
+ - AAAAAA==
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204943Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?acl=
+ method: PUT
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Content-Length:
+ - "0"
+ Date:
+ - Thu, 11 Dec 2025 20:49:43 GMT
+ X-Amz-Id-2:
+ - txge2b8bde8161b4ca8afb5-00693b2e67
+ X-Amz-Request-Id:
+ - txge2b8bde8161b4ca8afb5-00693b2e67
+ status: 200 OK
+ code: 200
+ duration: 33.392599ms
+ - id: 5
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 9f3f9027-a51b-4f26-a558-b96736dd192c
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204943Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:49:43 GMT
+ X-Amz-Id-2:
+ - txg48ebc2c67d114e71958f-00693b2e67
+ X-Amz-Request-Id:
+ - txg48ebc2c67d114e71958f-00693b2e67
+ status: 200 OK
+ code: 200
+ duration: 33.967189ms
+ - id: 6
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ object-lock:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 2a0ce290-f9b8-4026-af67-57933015ffc9
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204943Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?object-lock=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 330
+ body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg1683663c009a4bfeaa71-00693b2e67txg1683663c009a4bfeaa71-00693b2e67/test-acc-action-instance-export-snap-local-771354746101313227
+ headers:
+ Content-Length:
+ - "330"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:49:43 GMT
+ X-Amz-Id-2:
+ - txg1683663c009a4bfeaa71-00693b2e67
+ X-Amz-Request-Id:
+ - txg1683663c009a4bfeaa71-00693b2e67
+ status: 404 Not Found
+ code: 404
+ duration: 21.603783ms
+ - id: 7
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 295
+ host: api.scaleway.com
+ body: '{"name":"test-tf-action-instance-export-snap-local","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"ec31d73d-ca36-4536-adf4-0feb76d30379","volumes":{"0":{"boot":false,"size":10000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2209
+ body: '{"server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:49:43.402896+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:cd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:49:43.402896+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2209"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:49:43 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 4a34a7ed-1255-4129-8761-50a1e3491446
+ status: 201 Created
+ code: 201
+ duration: 358.179093ms
+ - id: 8
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 10a2b086-d535-4c20-8cba-0dec5f93969a
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204943Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 287
+ body: |-
+
+ test-acc-action-instance-export-snap-local-7713547461013132271000false
+ headers:
+ Content-Length:
+ - "287"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:49:43 GMT
+ X-Amz-Id-2:
+ - txge91a77e15f9f4488b6b4-00693b2e67
+ X-Amz-Request-Id:
+ - txge91a77e15f9f4488b6b4-00693b2e67
+ status: 200 OK
+ code: 200
+ duration: 30.641018ms
+ - id: 9
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 5eaa649d-892d-40ca-823e-05a79eac2384
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204943Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 361
+ body: NoSuchTagSetThe TagSet does not existtxg3a112997e9454111b3d8-00693b2e67txg3a112997e9454111b3d8-00693b2e67/test-acc-action-instance-export-snap-local-771354746101313227test-acc-action-instance-export-snap-local-771354746101313227
+ headers:
+ Content-Length:
+ - "361"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:49:43 GMT
+ X-Amz-Id-2:
+ - txg3a112997e9454111b3d8-00693b2e67
+ X-Amz-Request-Id:
+ - txg3a112997e9454111b3d8-00693b2e67
+ status: 404 Not Found
+ code: 404
+ duration: 17.900944ms
+ - id: 10
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ cors:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - d078c6ec-45f5-4e00-9ef5-390dcaa242fd
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204943Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?cors=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 298
+ body: NoSuchCORSConfigurationThe CORS configuration does not existtxg73b1ee631fd94b9eab79-00693b2e67txg73b1ee631fd94b9eab79-00693b2e67/test-acc-action-instance-export-snap-local-771354746101313227
+ headers:
+ Content-Length:
+ - "298"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:49:43 GMT
+ X-Amz-Id-2:
+ - txg73b1ee631fd94b9eab79-00693b2e67
+ X-Amz-Request-Id:
+ - txg73b1ee631fd94b9eab79-00693b2e67
+ status: 404 Not Found
+ code: 404
+ duration: 16.958162ms
+ - id: 11
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ versioning:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 7bff472d-f49e-4ac8-9d82-3cac33196e89
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204943Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?versioning=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 107
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "107"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:49:43 GMT
+ X-Amz-Id-2:
+ - txg519be2d985594ab78907-00693b2e67
+ X-Amz-Request-Id:
+ - txg519be2d985594ab78907-00693b2e67
+ status: 200 OK
+ code: 200
+ duration: 14.731257ms
+ - id: 12
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ lifecycle:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 51ea94d2-22c4-4a20-88ee-52e309771cdf
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204943Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 394
+ body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg699ac3014624443dbebc-00693b2e67txg699ac3014624443dbebc-00693b2e67/test-acc-action-instance-export-snap-local-771354746101313227test-acc-action-instance-export-snap-local-771354746101313227
+ headers:
+ Content-Length:
+ - "394"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:49:43 GMT
+ X-Amz-Id-2:
+ - txg699ac3014624443dbebc-00693b2e67
+ X-Amz-Request-Id:
+ - txg699ac3014624443dbebc-00693b2e67
+ status: 404 Not Found
+ code: 404
+ duration: 9.63067ms
+ - id: 13
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2209
+ body: '{"server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:49:43.402896+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:cd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:49:43.402896+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2209"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:49:43 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 35640114-3f6b-4a56-8f2c-0d2e61d4752b
+ status: 200 OK
+ code: 200
+ duration: 114.957424ms
+ - id: 14
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2209
+ body: '{"server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:49:43.402896+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:cd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:49:43.402896+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2209"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:49:43 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 568402be-ab19-4e65-baea-d51c0cc5dbb3
+ status: 200 OK
+ code: 200
+ duration: 82.629817ms
+ - id: 15
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 20
+ host: api.scaleway.com
+ body: '{"action":"poweron"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 357
+ body: '{"task": {"id": "76056892-9dd9-42fc-a01a-8eb7dfce7859", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd/action", "href_result": "/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd", "started_at": "2025-12-11T20:49:44.036369+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "357"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:49:44 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/76056892-9dd9-42fc-a01a-8eb7dfce7859
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - ff1a1d40-d4c8-41e9-8abb-b05cc714d3f5
+ status: 202 Accepted
+ code: 202
+ duration: 258.170965ms
+ - id: 16
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2231
+ body: '{"server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:49:43.402896+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:cd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:49:43.847177+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2231"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:49:44 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - f3e46a63-3018-4389-86ac-2b31afd0bc34
+ status: 200 OK
+ code: 200
+ duration: 90.806234ms
+ - id: 17
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2334
+ body: '{"server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:49:43.402896+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:cd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:49:43.847177+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "702", "node_id": "41"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2334"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:49:49 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 6561a5a0-5881-42e6-b836-0b9248095df7
+ status: 200 OK
+ code: 200
+ duration: 78.66797ms
+ - id: 18
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2365
+ body: '{"server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:49:43.402896+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:cd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:49:54.041735+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "702", "node_id": "41"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2365"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:49:54 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 5181e4d7-48a1-4532-b3fd-22a7cf1b1401
+ status: 200 OK
+ code: 200
+ duration: 112.780421ms
+ - id: 19
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2365
+ body: '{"server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:49:43.402896+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:cd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:49:54.041735+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "702", "node_id": "41"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2365"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:49:54 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 39dffc1c-5576-4b7d-ab97-6d1ae84b8c07
+ status: 200 OK
+ code: 200
+ duration: 83.4942ms
+ - id: 20
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fb946eef-d9d5-4765-a467-2024bce0b57e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 525
+ body: '{"volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:49:43.402896+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "525"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:49:54 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 863f7669-5c54-4e6a-afb6-78fa6f479846
+ status: 200 OK
+ code: 200
+ duration: 80.380067ms
+ - id: 21
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:49:54 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 20a9673d-37d1-4b2e-a8ef-59daec5e2359
+ status: 200 OK
+ code: 200
+ duration: 59.347047ms
+ - id: 22
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:49:54 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - c2e17715-6cf8-4ef7-9ee1-8aec56af1e7c
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 59.620461ms
+ - id: 23
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 132
+ host: api.scaleway.com
+ body: '{"name":"tf-snap-gifted-wilson","volume_id":"fb946eef-d9d5-4765-a467-2024bce0b57e","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 849
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:49:54.724470+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}, "task": {"id": "58ebe184-ac81-4fd3-bd84-6ba05a0370d7", "description": "volume_snapshot", "status": "pending", "href_from": "/snapshots", "href_result": "snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4", "started_at": "2025-12-11T20:49:54.974570+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "849"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:49:55 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 56273aa7-87a5-4f70-a59d-40ddab4d3464
+ status: 201 Created
+ code: 201
+ duration: 420.382802ms
+ - id: 24
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 538
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:49:54.724470+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "538"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:49:55 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - e535b9df-362a-4149-8348-d993c25ff023
+ status: 200 OK
+ code: 200
+ duration: 57.6029ms
+ - id: 25
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 538
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:49:54.724470+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "538"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:00 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 348bd46b-c4b1-4b1d-9849-72db3c0ab3d2
+ status: 200 OK
+ code: 200
+ duration: 72.746661ms
+ - id: 26
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 538
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:49:54.724470+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "538"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 4f3494a2-4b4f-4492-85de-5e6d5c44e3b3
+ status: 200 OK
+ code: 200
+ duration: 72.5395ms
+ - id: 27
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 538
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:49:54.724470+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "538"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:10 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 7fd08509-f884-45b1-a3b4-56434da562ea
+ status: 200 OK
+ code: 200
+ duration: 75.357035ms
+ - id: 28
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 538
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:49:54.724470+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "538"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:15 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 2c153af0-3c8b-4f33-946e-b648b7e044bd
+ status: 200 OK
+ code: 200
+ duration: 61.419721ms
+ - id: 29
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 538
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:49:54.724470+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "538"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:20 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - e4fdd748-c631-4c8c-a29b-f0c91c10a645
+ status: 200 OK
+ code: 200
+ duration: 131.138468ms
+ - id: 30
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 538
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:49:54.724470+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "538"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:25 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 54542d4b-a44a-4478-8745-c95169ab3416
+ status: 200 OK
+ code: 200
+ duration: 102.924443ms
+ - id: 31
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 538
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:49:54.724470+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "538"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:30 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 7d62b87e-dba3-473e-89f3-bb9a2f762428
+ status: 200 OK
+ code: 200
+ duration: 113.897825ms
+ - id: 32
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 535
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:50:32.168797+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "available", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "535"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:35 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - dc424048-3120-4819-96dc-c6dcd1360b98
+ status: 200 OK
+ code: 200
+ duration: 60.000101ms
+ - id: 33
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 535
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:50:32.168797+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "available", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "535"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:35 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - a35cccba-1863-4e33-ba57-5ea8163555ff
+ status: 200 OK
+ code: 200
+ duration: 62.635164ms
+ - id: 34
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 535
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:50:32.168797+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "available", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "535"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:35 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 919d7da0-956d-4a9a-b907-adaac9048658
+ status: 200 OK
+ code: 200
+ duration: 55.105623ms
+ - id: 35
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 106
+ host: api.scaleway.com
+ body: '{"bucket":"test-acc-action-instance-export-snap-local-771354746101313227","key":"exported-snapshot.qcow2"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4/export
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 422
+ body: '{"task": {"id": "e9d51d61-de43-4d59-ad58-7021e032680e", "description": "export_snapshot", "status": "pending", "href_from": "/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4/export", "href_result": "https://s3.fr-par.scw.cloud/test-acc-action-instance-export-snap-local-771354746101313227/exported-snapshot.qcow2", "started_at": "2025-12-11T20:50:41.021723+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "422"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:41 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e9d51d61-de43-4d59-ad58-7021e032680e
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - e1b4030c-d60d-4562-8ae0-627f67c0bb6d
+ status: 202 Accepted
+ code: 202
+ duration: 5.06914674s
+ - id: 36
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 535
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:50:36.008062+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "535"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:41 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 57068199-bdfc-434c-a08c-7a0340a2b7e1
+ status: 200 OK
+ code: 200
+ duration: 61.495481ms
+ - id: 37
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 87ac884f-08d8-43f2-b2d0-8d964db727b1
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205041Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: -1
+ body: ""
+ headers:
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:41 GMT
+ X-Amz-Bucket-Region:
+ - fr-par
+ X-Amz-Id-2:
+ - txgaa955d71d9c949efa045-00693b2ea1
+ X-Amz-Request-Id:
+ - txgaa955d71d9c949efa045-00693b2ea1
+ status: 200 OK
+ code: 200
+ duration: 48.359865ms
+ - id: 38
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 3e28b5c8-d4b5-4e08-b900-35935d06c031
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205041Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:50:41 GMT
+ X-Amz-Id-2:
+ - txg32ee15d3810d44179c40-00693b2ea1
+ X-Amz-Request-Id:
+ - txg32ee15d3810d44179c40-00693b2ea1
+ status: 200 OK
+ code: 200
+ duration: 33.032269ms
+ - id: 39
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ object-lock:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 742c2447-8672-4085-990e-e9046a14c160
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205041Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?object-lock=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 330
+ body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg60f925a1a3c6467eb9e8-00693b2ea1txg60f925a1a3c6467eb9e8-00693b2ea1/test-acc-action-instance-export-snap-local-771354746101313227
+ headers:
+ Content-Length:
+ - "330"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:41 GMT
+ X-Amz-Id-2:
+ - txg60f925a1a3c6467eb9e8-00693b2ea1
+ X-Amz-Request-Id:
+ - txg60f925a1a3c6467eb9e8-00693b2ea1
+ status: 404 Not Found
+ code: 404
+ duration: 25.550879ms
+ - id: 40
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2365
+ body: '{"server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:50:32.168797+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:cd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:49:54.041735+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "702", "node_id": "41"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2365"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:41 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - e1b7ea35-53e3-466f-91e1-6527c81083dc
+ status: 200 OK
+ code: 200
+ duration: 100.284909ms
+ - id: 41
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 1868e600-0fc6-4967-ae2e-ce5e3da51121
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205041Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 782
+ body: |-
+
+ test-acc-action-instance-export-snap-local-7713547461013132271000falseexported-snapshot.qcow22025-12-11T20:50:40.000Z"d41d8cd98f00b204e9800998ecf8427e"0fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552STANDARDCRC32FULL_OBJECT
+ headers:
+ Content-Length:
+ - "782"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:41 GMT
+ X-Amz-Id-2:
+ - txg4cf2a7f186754714be76-00693b2ea1
+ X-Amz-Request-Id:
+ - txg4cf2a7f186754714be76-00693b2ea1
+ status: 200 OK
+ code: 200
+ duration: 40.064084ms
+ - id: 42
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 9f8a1111-e28d-4d11-b63f-1c5c80933aeb
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205041Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 361
+ body: NoSuchTagSetThe TagSet does not existtxg2ce29235daa84ab8bbcc-00693b2ea1txg2ce29235daa84ab8bbcc-00693b2ea1/test-acc-action-instance-export-snap-local-771354746101313227test-acc-action-instance-export-snap-local-771354746101313227
+ headers:
+ Content-Length:
+ - "361"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:41 GMT
+ X-Amz-Id-2:
+ - txg2ce29235daa84ab8bbcc-00693b2ea1
+ X-Amz-Request-Id:
+ - txg2ce29235daa84ab8bbcc-00693b2ea1
+ status: 404 Not Found
+ code: 404
+ duration: 14.943674ms
+ - id: 43
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ cors:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 24343261-388d-4b74-b3ff-23f2d07c2cc7
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205041Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?cors=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 298
+ body: NoSuchCORSConfigurationThe CORS configuration does not existtxgc43a69e02f4743e18186-00693b2ea1txgc43a69e02f4743e18186-00693b2ea1/test-acc-action-instance-export-snap-local-771354746101313227
+ headers:
+ Content-Length:
+ - "298"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:41 GMT
+ X-Amz-Id-2:
+ - txgc43a69e02f4743e18186-00693b2ea1
+ X-Amz-Request-Id:
+ - txgc43a69e02f4743e18186-00693b2ea1
+ status: 404 Not Found
+ code: 404
+ duration: 16.83044ms
+ - id: 44
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fb946eef-d9d5-4765-a467-2024bce0b57e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 525
+ body: '{"volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:50:32.168797+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "525"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:41 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 3f827759-fcd8-4d0c-9fbb-51ebc0ef217b
+ status: 200 OK
+ code: 200
+ duration: 58.043153ms
+ - id: 45
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ versioning:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - b27df275-514f-48f2-9f70-d8dfd0ed4694
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205041Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?versioning=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 107
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "107"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:50:41 GMT
+ X-Amz-Id-2:
+ - txgf7c2b3f183144dc78de3-00693b2ea1
+ X-Amz-Request-Id:
+ - txgf7c2b3f183144dc78de3-00693b2ea1
+ status: 200 OK
+ code: 200
+ duration: 29.847664ms
+ - id: 46
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ lifecycle:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - c65e1723-50c3-4227-a991-6f443065045a
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205041Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 394
+ body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg964aa38b35ba47eda52b-00693b2ea1txg964aa38b35ba47eda52b-00693b2ea1/test-acc-action-instance-export-snap-local-771354746101313227test-acc-action-instance-export-snap-local-771354746101313227
+ headers:
+ Content-Length:
+ - "394"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:41 GMT
+ X-Amz-Id-2:
+ - txg964aa38b35ba47eda52b-00693b2ea1
+ X-Amz-Request-Id:
+ - txg964aa38b35ba47eda52b-00693b2ea1
+ status: 404 Not Found
+ code: 404
+ duration: 40.417729ms
+ - id: 47
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:41 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 56a13411-8901-4962-b2de-41be4c9093e6
+ status: 200 OK
+ code: 200
+ duration: 51.784621ms
+ - id: 48
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:41 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 5f8f09f2-b154-4a6b-b424-3f1a8835689c
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 49.009957ms
+ - id: 49
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 535
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:50:36.008062+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "535"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:41 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 325c00b4-2e99-437f-b2b7-c82edbaf2aa9
+ status: 200 OK
+ code: 200
+ duration: 55.189119ms
+ - id: 50
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - e1d36391-a443-445b-af8c-68dd9b79412b
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205041Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:50:41 GMT
+ X-Amz-Id-2:
+ - txgb5d397c958654d75b68b-00693b2ea1
+ X-Amz-Request-Id:
+ - txgb5d397c958654d75b68b-00693b2ea1
+ status: 200 OK
+ code: 200
+ duration: 13.663038ms
+ - id: 51
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ object-lock:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 573dae0c-4006-44ed-a8cd-d2e73241be47
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205041Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?object-lock=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 330
+ body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg79f9d684659f4a5d9487-00693b2ea1txg79f9d684659f4a5d9487-00693b2ea1/test-acc-action-instance-export-snap-local-771354746101313227
+ headers:
+ Content-Length:
+ - "330"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:41 GMT
+ X-Amz-Id-2:
+ - txg79f9d684659f4a5d9487-00693b2ea1
+ X-Amz-Request-Id:
+ - txg79f9d684659f4a5d9487-00693b2ea1
+ status: 404 Not Found
+ code: 404
+ duration: 14.496574ms
+ - id: 52
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - d3bdfc2c-4806-46b7-aec6-dddc2ba46bd6
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205041Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 782
+ body: |-
+
+ test-acc-action-instance-export-snap-local-7713547461013132271000falseexported-snapshot.qcow22025-12-11T20:50:40.000Z"d41d8cd98f00b204e9800998ecf8427e"0fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552STANDARDCRC32FULL_OBJECT
+ headers:
+ Content-Length:
+ - "782"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:41 GMT
+ X-Amz-Id-2:
+ - txg9ce1a183f30d44b9925d-00693b2ea1
+ X-Amz-Request-Id:
+ - txg9ce1a183f30d44b9925d-00693b2ea1
+ status: 200 OK
+ code: 200
+ duration: 30.767462ms
+ - id: 53
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2365
+ body: '{"server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:50:32.168797+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:cd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:49:54.041735+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "702", "node_id": "41"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2365"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:41 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 5e09b36d-d2cd-4b82-ac5d-b0205a13259b
+ status: 200 OK
+ code: 200
+ duration: 78.026448ms
+ - id: 54
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 77eec4e9-7068-496c-8589-b8c887a063ce
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205041Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 361
+ body: NoSuchTagSetThe TagSet does not existtxge23ea43f30cf4bf1b589-00693b2ea1txge23ea43f30cf4bf1b589-00693b2ea1/test-acc-action-instance-export-snap-local-771354746101313227test-acc-action-instance-export-snap-local-771354746101313227
+ headers:
+ Content-Length:
+ - "361"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:41 GMT
+ X-Amz-Id-2:
+ - txge23ea43f30cf4bf1b589-00693b2ea1
+ X-Amz-Request-Id:
+ - txge23ea43f30cf4bf1b589-00693b2ea1
+ status: 404 Not Found
+ code: 404
+ duration: 15.869414ms
+ - id: 55
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ cors:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - e48e885b-1d82-48e5-bf92-ae29b0353801
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205041Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?cors=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 298
+ body: NoSuchCORSConfigurationThe CORS configuration does not existtxg210ab7e952cc4b59b7cd-00693b2ea1txg210ab7e952cc4b59b7cd-00693b2ea1/test-acc-action-instance-export-snap-local-771354746101313227
+ headers:
+ Content-Length:
+ - "298"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:41 GMT
+ X-Amz-Id-2:
+ - txg210ab7e952cc4b59b7cd-00693b2ea1
+ X-Amz-Request-Id:
+ - txg210ab7e952cc4b59b7cd-00693b2ea1
+ status: 404 Not Found
+ code: 404
+ duration: 9.398713ms
+ - id: 56
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ versioning:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 05551ef4-5617-457d-93cc-3c6aaad3d39b
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205041Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?versioning=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 107
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "107"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:50:41 GMT
+ X-Amz-Id-2:
+ - txg5e7b9609185247799eb7-00693b2ea1
+ X-Amz-Request-Id:
+ - txg5e7b9609185247799eb7-00693b2ea1
+ status: 200 OK
+ code: 200
+ duration: 7.216523ms
+ - id: 57
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ lifecycle:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 0bc4a586-995e-4ef0-88c3-434c8c808f00
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205041Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 394
+ body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg50572bdb266a4e8fb4b9-00693b2ea1txg50572bdb266a4e8fb4b9-00693b2ea1/test-acc-action-instance-export-snap-local-771354746101313227test-acc-action-instance-export-snap-local-771354746101313227
+ headers:
+ Content-Length:
+ - "394"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:41 GMT
+ X-Amz-Id-2:
+ - txg50572bdb266a4e8fb4b9-00693b2ea1
+ X-Amz-Request-Id:
+ - txg50572bdb266a4e8fb4b9-00693b2ea1
+ status: 404 Not Found
+ code: 404
+ duration: 9.07779ms
+ - id: 58
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - dca7eaad-e6fd-4b30-ad6e-31435af03416
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205041Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/exported-snapshot.qcow2
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "0"
+ Content-Type:
+ - application/x-qemu-disk
+ Date:
+ - Thu, 11 Dec 2025 20:50:41 GMT
+ Etag:
+ - '"d41d8cd98f00b204e9800998ecf8427e"'
+ Last-Modified:
+ - Thu, 11 Dec 2025 20:50:40 GMT
+ X-Amz-Id-2:
+ - txg07356dc7849342218f63-00693b2ea1
+ X-Amz-Request-Id:
+ - txg07356dc7849342218f63-00693b2ea1
+ status: 200 OK
+ code: 200
+ duration: 17.701036ms
+ - id: 59
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 2d4791f3-b8d5-4a4f-b5d3-fc60cc0a021a
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205042Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/exported-snapshot.qcow2
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "0"
+ Content-Type:
+ - application/x-qemu-disk
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ Etag:
+ - '"d41d8cd98f00b204e9800998ecf8427e"'
+ Last-Modified:
+ - Thu, 11 Dec 2025 20:50:40 GMT
+ X-Amz-Id-2:
+ - txg912bef5ca5104032894e-00693b2ea2
+ X-Amz-Request-Id:
+ - txg912bef5ca5104032894e-00693b2ea2
+ status: 200 OK
+ code: 200
+ duration: 9.071228ms
+ - id: 60
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fb946eef-d9d5-4765-a467-2024bce0b57e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 525
+ body: '{"volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:50:32.168797+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "525"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 22234578-8d5d-46db-9cd6-97b74f9f5e98
+ status: 200 OK
+ code: 200
+ duration: 77.587223ms
+ - id: 61
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 1f9be1ad-ca36-4d13-89ec-6abd5f894ecf
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205042Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/exported-snapshot.qcow2?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 75
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "75"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ X-Amz-Id-2:
+ - txg30fdcb8468ed4fe68f9b-00693b2ea2
+ X-Amz-Request-Id:
+ - txg30fdcb8468ed4fe68f9b-00693b2ea2
+ status: 200 OK
+ code: 200
+ duration: 42.051489ms
+ - id: 62
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - a359dfb5-2681-4abc-a401-7ff227b26d0a
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205042Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/exported-snapshot.qcow2?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ X-Amz-Id-2:
+ - txgbe7fa0c6042e40cf8d30-00693b2ea2
+ X-Amz-Request-Id:
+ - txgbe7fa0c6042e40cf8d30-00693b2ea2
+ status: 200 OK
+ code: 200
+ duration: 9.597146ms
+ - id: 63
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 6347b260-89d0-487a-b1c0-e4aa779dbc9d
+ status: 200 OK
+ code: 200
+ duration: 47.887396ms
+ - id: 64
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - c4f395d3-d9df-4d2e-8ff9-7d8ea0139396
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 60.303992ms
+ - id: 65
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 535
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:50:36.008062+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "535"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 438418c5-ea63-4b3b-8634-b7dad13033e5
+ status: 200 OK
+ code: 200
+ duration: 73.902227ms
+ - id: 66
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 009bfd47-5cf1-4fd7-9abf-37222a300e86
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205042Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/exported-snapshot.qcow2
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "0"
+ Content-Type:
+ - application/x-qemu-disk
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ Etag:
+ - '"d41d8cd98f00b204e9800998ecf8427e"'
+ Last-Modified:
+ - Thu, 11 Dec 2025 20:50:40 GMT
+ X-Amz-Id-2:
+ - txg20b83fad963c42819713-00693b2ea2
+ X-Amz-Request-Id:
+ - txg20b83fad963c42819713-00693b2ea2
+ status: 200 OK
+ code: 200
+ duration: 16.151714ms
+ - id: 67
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - e1d6e4d2-3921-4bbf-a206-008178f34a69
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205042Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/exported-snapshot.qcow2
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "0"
+ Content-Type:
+ - application/x-qemu-disk
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ Etag:
+ - '"d41d8cd98f00b204e9800998ecf8427e"'
+ Last-Modified:
+ - Thu, 11 Dec 2025 20:50:40 GMT
+ X-Amz-Id-2:
+ - txg660490fa897c4ff1991c-00693b2ea2
+ X-Amz-Request-Id:
+ - txg660490fa897c4ff1991c-00693b2ea2
+ status: 200 OK
+ code: 200
+ duration: 15.728499ms
+ - id: 68
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 928f2809-2054-4e56-bdfa-9a97ea51ef37
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205042Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/exported-snapshot.qcow2?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 75
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "75"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ X-Amz-Id-2:
+ - txgab56be32b3dd4d32bf15-00693b2ea2
+ X-Amz-Request-Id:
+ - txgab56be32b3dd4d32bf15-00693b2ea2
+ status: 200 OK
+ code: 200
+ duration: 13.697402ms
+ - id: 69
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - ebc1e026-47ae-4ecc-be9d-22e67e1ccd47
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205042Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/exported-snapshot.qcow2?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ X-Amz-Id-2:
+ - txg9c8e3bce49224da88659-00693b2ea2
+ X-Amz-Request-Id:
+ - txg9c8e3bce49224da88659-00693b2ea2
+ status: 200 OK
+ code: 200
+ duration: 15.525799ms
+ - id: 70
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 4f1f6e75-a309-4170-ba6a-8655f098618a
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205042Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ X-Amz-Id-2:
+ - txg7adb4cb36dae4660b177-00693b2ea2
+ X-Amz-Request-Id:
+ - txg7adb4cb36dae4660b177-00693b2ea2
+ status: 200 OK
+ code: 200
+ duration: 9.644825ms
+ - id: 71
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ object-lock:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 7ea96faa-6dc8-4f36-aab9-725beca5977b
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205042Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?object-lock=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 330
+ body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg7eb02061313c4edeabe5-00693b2ea2txg7eb02061313c4edeabe5-00693b2ea2/test-acc-action-instance-export-snap-local-771354746101313227
+ headers:
+ Content-Length:
+ - "330"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ X-Amz-Id-2:
+ - txg7eb02061313c4edeabe5-00693b2ea2
+ X-Amz-Request-Id:
+ - txg7eb02061313c4edeabe5-00693b2ea2
+ status: 404 Not Found
+ code: 404
+ duration: 9.536642ms
+ - id: 72
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - d7b44e2b-952b-4bf0-a2e5-2b2ffaa2d58e
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205042Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 782
+ body: |-
+
+ test-acc-action-instance-export-snap-local-7713547461013132271000falseexported-snapshot.qcow22025-12-11T20:50:40.000Z"d41d8cd98f00b204e9800998ecf8427e"0fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552STANDARDCRC32FULL_OBJECT
+ headers:
+ Content-Length:
+ - "782"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ X-Amz-Id-2:
+ - txg0f65e1043f4049809425-00693b2ea2
+ X-Amz-Request-Id:
+ - txg0f65e1043f4049809425-00693b2ea2
+ status: 200 OK
+ code: 200
+ duration: 19.981512ms
+ - id: 73
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - b3631429-c82d-476b-a868-8be1ab4bffad
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205042Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 361
+ body: NoSuchTagSetThe TagSet does not existtxg0ece8c0f95414ce9aaf9-00693b2ea2txg0ece8c0f95414ce9aaf9-00693b2ea2/test-acc-action-instance-export-snap-local-771354746101313227test-acc-action-instance-export-snap-local-771354746101313227
+ headers:
+ Content-Length:
+ - "361"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ X-Amz-Id-2:
+ - txg0ece8c0f95414ce9aaf9-00693b2ea2
+ X-Amz-Request-Id:
+ - txg0ece8c0f95414ce9aaf9-00693b2ea2
+ status: 404 Not Found
+ code: 404
+ duration: 12.308832ms
+ - id: 74
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ cors:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - e098f58b-c9ff-422a-bd64-1713a0235169
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205042Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?cors=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 298
+ body: NoSuchCORSConfigurationThe CORS configuration does not existtxg91293de9864a4411be22-00693b2ea2txg91293de9864a4411be22-00693b2ea2/test-acc-action-instance-export-snap-local-771354746101313227
+ headers:
+ Content-Length:
+ - "298"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ X-Amz-Id-2:
+ - txg91293de9864a4411be22-00693b2ea2
+ X-Amz-Request-Id:
+ - txg91293de9864a4411be22-00693b2ea2
+ status: 404 Not Found
+ code: 404
+ duration: 17.148338ms
+ - id: 75
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2365
+ body: '{"server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:50:32.168797+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:cd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:49:54.041735+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "702", "node_id": "41"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2365"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 4836611c-cf07-4c6b-b1b9-a8838bd9d4e5
+ status: 200 OK
+ code: 200
+ duration: 87.736717ms
+ - id: 76
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ versioning:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - a0af5c30-7d88-46ef-a7c4-e1aae0c19f24
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205042Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?versioning=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 107
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "107"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ X-Amz-Id-2:
+ - txg4a6eaae91add4606aff7-00693b2ea2
+ X-Amz-Request-Id:
+ - txg4a6eaae91add4606aff7-00693b2ea2
+ status: 200 OK
+ code: 200
+ duration: 15.604155ms
+ - id: 77
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ lifecycle:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 093ec011-1bfe-41f0-9e59-ab5c85aa5380
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205042Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 394
+ body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxgbc5f471407314a51bac1-00693b2ea2txgbc5f471407314a51bac1-00693b2ea2/test-acc-action-instance-export-snap-local-771354746101313227test-acc-action-instance-export-snap-local-771354746101313227
+ headers:
+ Content-Length:
+ - "394"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ X-Amz-Id-2:
+ - txgbc5f471407314a51bac1-00693b2ea2
+ X-Amz-Request-Id:
+ - txgbc5f471407314a51bac1-00693b2ea2
+ status: 404 Not Found
+ code: 404
+ duration: 8.767527ms
+ - id: 78
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - eb3c7946-fc71-4385-aa2a-fecbf2ad3a18
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205042Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/exported-snapshot.qcow2
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "0"
+ Content-Type:
+ - application/x-qemu-disk
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ Etag:
+ - '"d41d8cd98f00b204e9800998ecf8427e"'
+ Last-Modified:
+ - Thu, 11 Dec 2025 20:50:40 GMT
+ X-Amz-Id-2:
+ - txgff7f02ebef0d48589044-00693b2ea2
+ X-Amz-Request-Id:
+ - txgff7f02ebef0d48589044-00693b2ea2
+ status: 200 OK
+ code: 200
+ duration: 8.993422ms
+ - id: 79
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 0664d457-f7b9-4b6c-9425-ba96b7b9243d
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205042Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/exported-snapshot.qcow2
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "0"
+ Content-Type:
+ - application/x-qemu-disk
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ Etag:
+ - '"d41d8cd98f00b204e9800998ecf8427e"'
+ Last-Modified:
+ - Thu, 11 Dec 2025 20:50:40 GMT
+ X-Amz-Id-2:
+ - txge636a16771454140b0d8-00693b2ea2
+ X-Amz-Request-Id:
+ - txge636a16771454140b0d8-00693b2ea2
+ status: 200 OK
+ code: 200
+ duration: 8.714888ms
+ - id: 80
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fb946eef-d9d5-4765-a467-2024bce0b57e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 525
+ body: '{"volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:50:32.168797+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "525"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - c1278765-495d-49b0-afed-f86fbc9f8998
+ status: 200 OK
+ code: 200
+ duration: 56.592877ms
+ - id: 81
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 6742585b-4fa9-4fe6-a6f1-365d55f89d38
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205042Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/exported-snapshot.qcow2?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 75
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "75"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ X-Amz-Id-2:
+ - txg78a459568f324961b798-00693b2ea2
+ X-Amz-Request-Id:
+ - txg78a459568f324961b798-00693b2ea2
+ status: 200 OK
+ code: 200
+ duration: 21.535462ms
+ - id: 82
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 8629448f-6620-4e2f-a842-f21c1acc0ef4
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205042Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/exported-snapshot.qcow2?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ X-Amz-Id-2:
+ - txg52979014024f448ca356-00693b2ea2
+ X-Amz-Request-Id:
+ - txg52979014024f448ca356-00693b2ea2
+ status: 200 OK
+ code: 200
+ duration: 20.375703ms
+ - id: 83
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 76287f21-aec7-4461-b4e8-854ec2298688
+ status: 200 OK
+ code: 200
+ duration: 41.762125ms
+ - id: 84
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - e590d087-5e40-4735-a681-0140cfed4d1c
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 41.092236ms
+ - id: 85
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 535
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:50:36.008062+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "535"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 195ed687-7ba1-415b-b2a8-7833234136b3
+ status: 200 OK
+ code: 200
+ duration: 68.117917ms
+ - id: 86
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - f98d4739-5b17-42eb-b58f-1b586f9f3fad
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205042Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:50:42 GMT
+ X-Amz-Id-2:
+ - txge6bdd89cde94414b9ebd-00693b2ea2
+ X-Amz-Request-Id:
+ - txge6bdd89cde94414b9ebd-00693b2ea2
+ status: 200 OK
+ code: 200
+ duration: 12.565635ms
+ - id: 87
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ object-lock:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 05f0ddc2-ba85-4e73-9a61-62ab7138ab20
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205043Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?object-lock=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 330
+ body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxgd58c059d29c0464baaf1-00693b2ea3txgd58c059d29c0464baaf1-00693b2ea3/test-acc-action-instance-export-snap-local-771354746101313227
+ headers:
+ Content-Length:
+ - "330"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:43 GMT
+ X-Amz-Id-2:
+ - txgd58c059d29c0464baaf1-00693b2ea3
+ X-Amz-Request-Id:
+ - txgd58c059d29c0464baaf1-00693b2ea3
+ status: 404 Not Found
+ code: 404
+ duration: 7.744945ms
+ - id: 88
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - dbba0098-465d-43e6-8e80-6384d2ab1d28
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205043Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 782
+ body: |-
+
+ test-acc-action-instance-export-snap-local-7713547461013132271000falseexported-snapshot.qcow22025-12-11T20:50:40.000Z"d41d8cd98f00b204e9800998ecf8427e"0fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552STANDARDCRC32FULL_OBJECT
+ headers:
+ Content-Length:
+ - "782"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:43 GMT
+ X-Amz-Id-2:
+ - txge1954997e2684d20ae23-00693b2ea3
+ X-Amz-Request-Id:
+ - txge1954997e2684d20ae23-00693b2ea3
+ status: 200 OK
+ code: 200
+ duration: 9.999031ms
+ - id: 89
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 3a54751e-5e01-4f14-aabf-43a50c71153d
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205043Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 361
+ body: NoSuchTagSetThe TagSet does not existtxgf0695f6429df48c19d2d-00693b2ea3txgf0695f6429df48c19d2d-00693b2ea3/test-acc-action-instance-export-snap-local-771354746101313227test-acc-action-instance-export-snap-local-771354746101313227
+ headers:
+ Content-Length:
+ - "361"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:43 GMT
+ X-Amz-Id-2:
+ - txgf0695f6429df48c19d2d-00693b2ea3
+ X-Amz-Request-Id:
+ - txgf0695f6429df48c19d2d-00693b2ea3
+ status: 404 Not Found
+ code: 404
+ duration: 15.528023ms
+ - id: 90
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ cors:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - ce130784-91f7-4c26-99d4-4a99f7215fc4
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205043Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?cors=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 298
+ body: NoSuchCORSConfigurationThe CORS configuration does not existtxgb24bee3580064c0fac02-00693b2ea3txgb24bee3580064c0fac02-00693b2ea3/test-acc-action-instance-export-snap-local-771354746101313227
+ headers:
+ Content-Length:
+ - "298"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:43 GMT
+ X-Amz-Id-2:
+ - txgb24bee3580064c0fac02-00693b2ea3
+ X-Amz-Request-Id:
+ - txgb24bee3580064c0fac02-00693b2ea3
+ status: 404 Not Found
+ code: 404
+ duration: 6.633717ms
+ - id: 91
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ versioning:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - c1134f4f-f0c7-4d9b-868c-53964ce08c85
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205043Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?versioning=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 107
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "107"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:50:43 GMT
+ X-Amz-Id-2:
+ - txg4bdb35da5a214d0cb606-00693b2ea3
+ X-Amz-Request-Id:
+ - txg4bdb35da5a214d0cb606-00693b2ea3
+ status: 200 OK
+ code: 200
+ duration: 7.367526ms
+ - id: 92
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 535
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:50:36.008062+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "535"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:43 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - e310bc75-9652-4dfe-9b12-d1e4feecf845
+ status: 200 OK
+ code: 200
+ duration: 77.635403ms
+ - id: 93
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2365
+ body: '{"server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:50:32.168797+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:cd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:49:54.041735+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "702", "node_id": "41"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2365"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:43 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - b9b8141e-11de-4c09-bbfa-681154c93dc4
+ status: 200 OK
+ code: 200
+ duration: 90.120106ms
+ - id: 94
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fb946eef-d9d5-4765-a467-2024bce0b57e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 525
+ body: '{"volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:50:32.168797+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "525"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:43 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - bb35c1a2-6e8b-40bf-97bb-39588d2bef57
+ status: 200 OK
+ code: 200
+ duration: 49.314499ms
+ - id: 95
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ lifecycle:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 559b64e9-7612-4890-a210-79598e566d6d
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205043Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 394
+ body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxgd0aee889f64a413a8bfc-00693b2ea3txgd0aee889f64a413a8bfc-00693b2ea3/test-acc-action-instance-export-snap-local-771354746101313227test-acc-action-instance-export-snap-local-771354746101313227
+ headers:
+ Content-Length:
+ - "394"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:43 GMT
+ X-Amz-Id-2:
+ - txgd0aee889f64a413a8bfc-00693b2ea3
+ X-Amz-Request-Id:
+ - txgd0aee889f64a413a8bfc-00693b2ea3
+ status: 404 Not Found
+ code: 404
+ duration: 119.764268ms
+ - id: 96
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:43 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 86e19036-2c56-40f6-84f6-afeda1ba63c2
+ status: 200 OK
+ code: 200
+ duration: 43.865708ms
+ - id: 97
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:43 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 04c0facd-4f00-4143-b1e0-5540b31d8186
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 60.044344ms
+ - id: 98
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 535
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:50:36.008062+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "535"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:43 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 4ef03d4a-4e69-4816-8a51-072bda0209f2
+ status: 200 OK
+ code: 200
+ duration: 60.44674ms
+ - id: 99
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 535
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:50:36.008062+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "535"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:48 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 4d60ad8f-871f-4606-82a4-f541256a7c53
+ status: 200 OK
+ code: 200
+ duration: 70.389526ms
+ - id: 100
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 535
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:50:36.008062+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "535"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:53 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 96226460-25e1-444b-bd30-880a81a25833
+ status: 200 OK
+ code: 200
+ duration: 49.269273ms
+ - id: 101
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 535
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:50:36.008062+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "535"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 3c777a16-588f-40c1-a2f5-804570a43ebf
+ status: 200 OK
+ code: 200
+ duration: 55.118485ms
+ - id: 102
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 535
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:50:36.008062+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "535"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:03 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - d70ec517-7ffc-408b-a346-e611e81c6535
+ status: 200 OK
+ code: 200
+ duration: 57.255461ms
+ - id: 103
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 535
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:50:36.008062+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "535"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - f506f053-4096-4a84-a2cc-04d35acf16c9
+ status: 200 OK
+ code: 200
+ duration: 38.842336ms
+ - id: 104
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 535
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:50:36.008062+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "535"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:13 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - bf0e198a-24af-453d-9613-b3126817811e
+ status: 200 OK
+ code: 200
+ duration: 55.776982ms
+ - id: 105
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 535
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:50:36.008062+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "535"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:18 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 431ff4fa-3ba2-45d0-88fb-f73edd63af4f
+ status: 200 OK
+ code: 200
+ duration: 79.686624ms
+ - id: 106
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 535
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:50:36.008062+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "535"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:23 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 212659e1-adde-4d88-850d-90a3eef0b648
+ status: 200 OK
+ code: 200
+ duration: 58.937611ms
+ - id: 107
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 535
+ body: '{"snapshot": {"id": "94038b29-e76f-4431-95ec-25dac9c59ee4", "name": "tf-snap-gifted-wilson", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:49:54.724470+00:00", "modification_date": "2025-12-11T20:51:27.890570+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "available", "base_volume": {"id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "535"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:28 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 412237f0-4215-4a07-9f67-87872b60df03
+ status: 200 OK
+ code: 200
+ duration: 72.335699ms
+ - id: 108
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:29 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 644e68cf-6714-4536-92f4-c47b5b824402
+ status: 204 No Content
+ code: 204
+ duration: 125.008045ms
+ - id: 109
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/94038b29-e76f-4431-95ec-25dac9c59ee4
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 145
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_snapshot", "resource_id": "94038b29-e76f-4431-95ec-25dac9c59ee4"}'
+ headers:
+ Content-Length:
+ - "145"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:29 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 8a85da82-8348-4f61-9371-05192b422ce6
+ status: 404 Not Found
+ code: 404
+ duration: 50.676946ms
+ - id: 110
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2365
+ body: '{"server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:50:32.168797+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:cd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:49:54.041735+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "702", "node_id": "41"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2365"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:29 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 063c8d7e-72ea-4afd-a3f2-fedd7285ca0a
+ status: 200 OK
+ code: 200
+ duration: 81.769047ms
+ - id: 111
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2365
+ body: '{"server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:50:32.168797+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:cd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:49:54.041735+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "702", "node_id": "41"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2365"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:29 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - ffc854bb-be30-42bd-945c-01b85cb154d7
+ status: 200 OK
+ code: 200
+ duration: 102.323092ms
+ - id: 112
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 22
+ host: api.scaleway.com
+ body: '{"action":"terminate"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 353
+ body: '{"task": {"id": "6ddc8220-ebfe-4d69-ab06-ac077c293deb", "description": "server_terminate", "status": "pending", "href_from": "/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd/action", "href_result": "/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd", "started_at": "2025-12-11T20:51:29.519460+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "353"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:29 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6ddc8220-ebfe-4d69-ab06-ac077c293deb
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - eb3fb083-d00e-4986-bcf5-e0c13146063e
+ status: 202 Accepted
+ code: 202
+ duration: 211.186707ms
+ - id: 113
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2328
+ body: '{"server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-local", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "fb946eef-d9d5-4765-a467-2024bce0b57e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "07936622-0761-40d7-8a52-f5e1c2a0cafd", "name": "test-tf-action-instance-export-snap-local"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:50:32.168797+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:cd", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:49:43.402896+00:00", "modification_date": "2025-12-11T20:51:29.371974+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "702", "node_id": "41"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2328"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:29 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - e53756ef-eb08-4dd0-aef8-2cd21cc57203
+ status: 200 OK
+ code: 200
+ duration: 88.416068ms
+ - id: 114
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/07936622-0761-40d7-8a52-f5e1c2a0cafd
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "07936622-0761-40d7-8a52-f5e1c2a0cafd"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:34 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - bce635c1-77d0-4da7-8b3e-3a90ec3968e1
+ status: 404 Not Found
+ code: 404
+ duration: 48.799207ms
+ - id: 115
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fb946eef-d9d5-4765-a467-2024bce0b57e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "fb946eef-d9d5-4765-a467-2024bce0b57e"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:34 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 07fe1839-f9e4-4813-91f9-de7f6e28fb88
+ status: 404 Not Found
+ code: 404
+ duration: 31.160028ms
+ - id: 116
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb946eef-d9d5-4765-a467-2024bce0b57e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 127
+ body: '{"message":"resource is not found","resource":"volume","resource_id":"fb946eef-d9d5-4765-a467-2024bce0b57e","type":"not_found"}'
+ headers:
+ Content-Length:
+ - "127"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:34 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 54b3ff1c-ee7b-4c64-8266-3f0553886d76
+ status: 404 Not Found
+ code: 404
+ duration: 21.094953ms
+ - id: 117
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - ffee075d-5fbc-40fd-9569-a69318a58a89
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205134Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 710
+ body: |-
+
+ test-acc-action-instance-export-snap-local-7713547461013132271000falseexported-snapshot.qcow22025-12-11T20:51:27.000Z"80aad31feee4ab20fdd9133de83d7851-19"2468282368fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552STANDARD
+ headers:
+ Content-Length:
+ - "710"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:34 GMT
+ X-Amz-Id-2:
+ - txgf52290c625f14cf28e6c-00693b2ed6
+ X-Amz-Request-Id:
+ - txgf52290c625f14cf28e6c-00693b2ed6
+ status: 200 OK
+ code: 200
+ duration: 173.831345ms
+ - id: 118
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ x-id:
+ - DeleteObject
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 0985cce4-f81e-4d21-9e03-00ec9b37da2c
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205134Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/exported-snapshot.qcow2?x-id=DeleteObject
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Date:
+ - Thu, 11 Dec 2025 20:51:35 GMT
+ X-Amz-Id-2:
+ - txgdd56f7f7e44c4b9f97d2-00693b2ed7
+ X-Amz-Request-Id:
+ - txgdd56f7f7e44c4b9f97d2-00693b2ed7
+ status: 204 No Content
+ code: 204
+ duration: 332.585706ms
+ - id: 119
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - a06d718d-5e55-4860-a162-3ed31aef0d27
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205135Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:51:35 GMT
+ X-Amz-Id-2:
+ - txgd0cf8d46e8914d24924d-00693b2ed7
+ X-Amz-Request-Id:
+ - txgd0cf8d46e8914d24924d-00693b2ed7
+ status: 200 OK
+ code: 200
+ duration: 22.357495ms
+ - id: 120
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ object-lock:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - c1188c46-ae06-4386-ab7c-99d7e8e872a9
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205135Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?object-lock=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 330
+ body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxga262da437605426ea043-00693b2ed7txga262da437605426ea043-00693b2ed7/test-acc-action-instance-export-snap-local-771354746101313227
+ headers:
+ Content-Length:
+ - "330"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:35 GMT
+ X-Amz-Id-2:
+ - txga262da437605426ea043-00693b2ed7
+ X-Amz-Request-Id:
+ - txga262da437605426ea043-00693b2ed7
+ status: 404 Not Found
+ code: 404
+ duration: 20.310068ms
+ - id: 121
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 9ba46569-942b-4db7-88fd-45356ae8b80f
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205135Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 287
+ body: |-
+
+ test-acc-action-instance-export-snap-local-7713547461013132271000false
+ headers:
+ Content-Length:
+ - "287"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:35 GMT
+ X-Amz-Id-2:
+ - txg61fc15c059d14ff28b9e-00693b2ed7
+ X-Amz-Request-Id:
+ - txg61fc15c059d14ff28b9e-00693b2ed7
+ status: 200 OK
+ code: 200
+ duration: 95.516952ms
+ - id: 122
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 34a16096-a9e8-4e48-a68d-2dff721832fd
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205135Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 361
+ body: NoSuchTagSetThe TagSet does not existtxg31dd05376ab744a093c1-00693b2ed7txg31dd05376ab744a093c1-00693b2ed7/test-acc-action-instance-export-snap-local-771354746101313227test-acc-action-instance-export-snap-local-771354746101313227
+ headers:
+ Content-Length:
+ - "361"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:35 GMT
+ X-Amz-Id-2:
+ - txg31dd05376ab744a093c1-00693b2ed7
+ X-Amz-Request-Id:
+ - txg31dd05376ab744a093c1-00693b2ed7
+ status: 404 Not Found
+ code: 404
+ duration: 10.800077ms
+ - id: 123
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ cors:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 8909debc-0689-4cea-9829-285df318aecf
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205135Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?cors=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 298
+ body: NoSuchCORSConfigurationThe CORS configuration does not existtxg9a72329f63dd4f8da183-00693b2ed7txg9a72329f63dd4f8da183-00693b2ed7/test-acc-action-instance-export-snap-local-771354746101313227
+ headers:
+ Content-Length:
+ - "298"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:35 GMT
+ X-Amz-Id-2:
+ - txg9a72329f63dd4f8da183-00693b2ed7
+ X-Amz-Request-Id:
+ - txg9a72329f63dd4f8da183-00693b2ed7
+ status: 404 Not Found
+ code: 404
+ duration: 6.647543ms
+ - id: 124
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ versioning:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 25829987-74e1-4030-9c3c-6c46c275fcbc
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205135Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?versioning=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 107
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "107"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:51:35 GMT
+ X-Amz-Id-2:
+ - txg4f0085ec6b1b4b6e9945-00693b2ed7
+ X-Amz-Request-Id:
+ - txg4f0085ec6b1b4b6e9945-00693b2ed7
+ status: 200 OK
+ code: 200
+ duration: 44.520937ms
+ - id: 125
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ form:
+ lifecycle:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 13152757-bf5d-40fb-8152-6dbcbd8b599d
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205135Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 394
+ body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg18b7df18f43a4c8580d9-00693b2ed7txg18b7df18f43a4c8580d9-00693b2ed7/test-acc-action-instance-export-snap-local-771354746101313227test-acc-action-instance-export-snap-local-771354746101313227
+ headers:
+ Content-Length:
+ - "394"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:35 GMT
+ X-Amz-Id-2:
+ - txg18b7df18f43a4c8580d9-00693b2ed7
+ X-Amz-Request-Id:
+ - txg18b7df18f43a4c8580d9-00693b2ed7
+ status: 404 Not Found
+ code: 404
+ duration: 8.79624ms
+ - id: 126
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - f0d4f0e4-7dcb-49f3-8074-da1683a28c04
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205135Z
+ url: https://test-acc-action-instance-export-snap-local-771354746101313227.s3.fr-par.scw.cloud/
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Date:
+ - Thu, 11 Dec 2025 20:51:35 GMT
+ X-Amz-Id-2:
+ - txg7f65c6c6d797432c8371-00693b2ed7
+ X-Amz-Request-Id:
+ - txg7f65c6c6d797432c8371-00693b2ed7
+ status: 204 No Content
+ code: 204
+ duration: 192.941478ms
diff --git a/internal/services/instance/testdata/action-instance-export-snapshot-sbs.cassette.yaml b/internal/services/instance/testdata/action-instance-export-snapshot-sbs.cassette.yaml
new file mode 100644
index 000000000..a82a26f3d
--- /dev/null
+++ b/internal/services/instance/testdata/action-instance-export-snapshot-sbs.cassette.yaml
@@ -0,0 +1,4683 @@
+---
+version: 2
+interactions:
+ - id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ page:
+ - "1"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 39202
+ body: '{"servers": {"BASIC2-A16C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.89, "hourly_price": 0.2067, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 201.19, "hourly_price": 0.2756, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A2C-4G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 16.79, "hourly_price": 0.023, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 25.19, "hourly_price": 0.0345, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 50.3, "hourly_price": 0.0689, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A4C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 37.74, "hourly_price": 0.0517, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A8C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.48, "hourly_price": 0.1034, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "BASIC2-A8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 100.59, "hourly_price": 0.1378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 30.66, "hourly_price": 0.042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.454, "hourly_price": 0.0198, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.424, "hourly_price": 0.0088, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 46.5734, "hourly_price": 0.06378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 554.07, "hourly_price": 0.759, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 274.48, "hourly_price": 0.376, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 136.51, "hourly_price": 0.187, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1197.93, "hourly_price": 1.641, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 66.43, "hourly_price": 0.091, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}}}'
+ headers:
+ Content-Length:
+ - "39202"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:37:49 GMT
+ Link:
+ - ; rel="next",; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 41904c11-141d-4174-9767-ef7acad6cf77
+ X-Total-Count:
+ - "76"
+ status: 200 OK
+ code: 200
+ duration: 86.527795ms
+ - id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ page:
+ - "2"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20510
+ body: '{"servers": {"POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 891.33, "hourly_price": 1.221, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 0.1095, "hourly_price": 0.00015, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}'
+ headers:
+ Content-Length:
+ - "20510"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:37:49 GMT
+ Link:
+ - ; rel="first",; rel="previous",; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - d8ecb80f-8f4d-4d74-ab85-453130c1756c
+ X-Total-Count:
+ - "76"
+ status: 200 OK
+ code: 200
+ duration: 61.148922ms
+ - id: 2
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ image_label:
+ - ubuntu_jammy
+ order_by:
+ - type_asc
+ type:
+ - instance_sbs
+ zone:
+ - fr-par-1
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/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
+ content_length: 1320
+ body: '{"local_images":[{"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff","arch":"arm64","zone":"fr-par-1","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G","BASIC2-A2C-4G","BASIC2-A2C-8G","BASIC2-A4C-8G","BASIC2-A4C-16G","BASIC2-A8C-16G","BASIC2-A8C-32G","BASIC2-A16C-32G","BASIC2-A16C-64G"],"label":"ubuntu_jammy","type":"instance_sbs"},{"id":"6d3c053e-c728-4294-b23a-560b62a4d592","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-48C-192G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-48C-384G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"label":"ubuntu_jammy","type":"instance_sbs"}],"total_count":2}'
+ headers:
+ Content-Length:
+ - "1320"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:37:49 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - fa2d4962-fe54-4a2f-b0cb-612b012f2948
+ status: 200 OK
+ code: 200
+ duration: 46.809906ms
+ - id: 3
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 066168ce-6309-43c4-b811-04996acbec0b
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T203749Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/
+ method: PUT
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Content-Length:
+ - "0"
+ Date:
+ - Thu, 11 Dec 2025 20:37:49 GMT
+ Location:
+ - /test-acc-action-instance-export-snap-sbs-5011792431776155855
+ X-Amz-Id-2:
+ - txg63a3668cb6e34ee985fa-00693b2b9d
+ X-Amz-Request-Id:
+ - txg63a3668cb6e34ee985fa-00693b2b9d
+ status: 200 OK
+ code: 200
+ duration: 530.554296ms
+ - id: 4
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - a556552e-cd90-4d4e-ac04-c1f12a432f06
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,Z,e
+ X-Amz-Acl:
+ - private
+ X-Amz-Checksum-Crc32:
+ - AAAAAA==
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T203749Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?acl=
+ method: PUT
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Content-Length:
+ - "0"
+ Date:
+ - Thu, 11 Dec 2025 20:37:49 GMT
+ X-Amz-Id-2:
+ - txgadd392c2c66b4e568523-00693b2b9d
+ X-Amz-Request-Id:
+ - txgadd392c2c66b4e568523-00693b2b9d
+ status: 200 OK
+ code: 200
+ duration: 29.828286ms
+ - id: 5
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 646bf72c-6d7a-4396-859a-526a0921cfc5
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T203749Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:37:49 GMT
+ X-Amz-Id-2:
+ - txgab7760e19a104eb39d99-00693b2b9d
+ X-Amz-Request-Id:
+ - txgab7760e19a104eb39d99-00693b2b9d
+ status: 200 OK
+ code: 200
+ duration: 17.8906ms
+ - id: 6
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ object-lock:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 8729f1c2-bf5c-46fb-9532-37aa768e356b
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T203749Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?object-lock=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 329
+ body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxge95c1f172b9b4c21a52d-00693b2b9dtxge95c1f172b9b4c21a52d-00693b2b9d/test-acc-action-instance-export-snap-sbs-5011792431776155855
+ headers:
+ Content-Length:
+ - "329"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:37:49 GMT
+ X-Amz-Id-2:
+ - txge95c1f172b9b4c21a52d-00693b2b9d
+ X-Amz-Request-Id:
+ - txge95c1f172b9b4c21a52d-00693b2b9d
+ status: 404 Not Found
+ code: 404
+ duration: 116.33419ms
+ - id: 7
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 271
+ host: api.scaleway.com
+ body: '{"name":"test-tf-action-instance-export-snap-sbs","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false,"size":10000000000}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1778
+ body: '{"server": {"id": "deee089e-c6dc-4f43-b3cc-c23022fee4c9", "name": "test-tf-action-instance-export-snap-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2882a6c5-8006-4f9d-8555-2c9ac8ef8f85", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:37:49.456879+00:00", "modification_date": "2025-12-11T20:37:49.456879+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1778"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:37:49 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 23b58b56-0143-4984-b27f-3f325eb2d5ac
+ status: 201 Created
+ code: 201
+ duration: 498.932094ms
+ - id: 8
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 39a0d056-abbf-484f-a96f-3f1f027b9a14
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T203749Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 286
+ body: |-
+
+ test-acc-action-instance-export-snap-sbs-50117924317761558551000false
+ headers:
+ Content-Length:
+ - "286"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:37:49 GMT
+ X-Amz-Id-2:
+ - txgf7e4e87f64dd4ba984d6-00693b2b9d
+ X-Amz-Request-Id:
+ - txgf7e4e87f64dd4ba984d6-00693b2b9d
+ status: 200 OK
+ code: 200
+ duration: 89.30443ms
+ - id: 9
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 001f8ac9-2bde-4fa0-aee3-1629ef7aac60
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T203749Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 359
+ body: NoSuchTagSetThe TagSet does not existtxgd6ad5ea19010467fa096-00693b2b9dtxgd6ad5ea19010467fa096-00693b2b9d/test-acc-action-instance-export-snap-sbs-5011792431776155855test-acc-action-instance-export-snap-sbs-5011792431776155855
+ headers:
+ Content-Length:
+ - "359"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:37:49 GMT
+ X-Amz-Id-2:
+ - txgd6ad5ea19010467fa096-00693b2b9d
+ X-Amz-Request-Id:
+ - txgd6ad5ea19010467fa096-00693b2b9d
+ status: 404 Not Found
+ code: 404
+ duration: 6.93414ms
+ - id: 10
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1778
+ body: '{"server": {"id": "deee089e-c6dc-4f43-b3cc-c23022fee4c9", "name": "test-tf-action-instance-export-snap-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2882a6c5-8006-4f9d-8555-2c9ac8ef8f85", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:37:49.456879+00:00", "modification_date": "2025-12-11T20:37:49.456879+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1778"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:37:49 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 47186c71-82e0-4c82-b38e-2ce9f6e66d50
+ status: 200 OK
+ code: 200
+ duration: 99.249807ms
+ - id: 11
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ cors:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 2cfcee37-f40f-494a-b81b-3a3ac8e97fc7
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T203749Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?cors=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 297
+ body: NoSuchCORSConfigurationThe CORS configuration does not existtxgf20c575d9f6a4705bdbb-00693b2b9dtxgf20c575d9f6a4705bdbb-00693b2b9d/test-acc-action-instance-export-snap-sbs-5011792431776155855
+ headers:
+ Content-Length:
+ - "297"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:37:49 GMT
+ X-Amz-Id-2:
+ - txgf20c575d9f6a4705bdbb-00693b2b9d
+ X-Amz-Request-Id:
+ - txgf20c575d9f6a4705bdbb-00693b2b9d
+ status: 404 Not Found
+ code: 404
+ duration: 54.552568ms
+ - id: 12
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ versioning:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - ca93c507-abf4-42c2-9e07-2504bec090de
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T203749Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?versioning=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 107
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "107"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:37:50 GMT
+ X-Amz-Id-2:
+ - txg0180538ef3a243c896fd-00693b2b9e
+ X-Amz-Request-Id:
+ - txg0180538ef3a243c896fd-00693b2b9e
+ status: 200 OK
+ code: 200
+ duration: 8.088783ms
+ - id: 13
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1778
+ body: '{"server": {"id": "deee089e-c6dc-4f43-b3cc-c23022fee4c9", "name": "test-tf-action-instance-export-snap-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2882a6c5-8006-4f9d-8555-2c9ac8ef8f85", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:37:49.456879+00:00", "modification_date": "2025-12-11T20:37:49.456879+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1778"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:37:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - e6517290-bc81-4408-86e3-29890cd15618
+ status: 200 OK
+ code: 200
+ duration: 106.682555ms
+ - id: 14
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ lifecycle:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 8db92fc7-bbbd-4808-89b8-908e95029e78
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T203750Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 392
+ body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg0864e7adda9743b7a366-00693b2b9etxg0864e7adda9743b7a366-00693b2b9e/test-acc-action-instance-export-snap-sbs-5011792431776155855test-acc-action-instance-export-snap-sbs-5011792431776155855
+ headers:
+ Content-Length:
+ - "392"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:37:50 GMT
+ X-Amz-Id-2:
+ - txg0864e7adda9743b7a366-00693b2b9e
+ X-Amz-Request-Id:
+ - txg0864e7adda9743b7a366-00693b2b9e
+ status: 404 Not Found
+ code: 404
+ duration: 93.515614ms
+ - id: 15
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2882a6c5-8006-4f9d-8555-2c9ac8ef8f85
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"2882a6c5-8006-4f9d-8555-2c9ac8ef8f85","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:37:49.557560Z","updated_at":"2025-12-11T20:37:49.557560Z","references":[{"id":"c7651a4c-71f3-49de-9677-f0cdfecf2e4e","product_resource_type":"instance_server","product_resource_id":"deee089e-c6dc-4f43-b3cc-c23022fee4c9","created_at":"2025-12-11T20:37:49.557560Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:37:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - bb3ed603-ed44-405c-b4bd-51eaae5d4d2d
+ status: 200 OK
+ code: 200
+ duration: 51.003778ms
+ - id: 16
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 20
+ host: api.scaleway.com
+ body: '{"action":"poweron"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 357
+ body: '{"task": {"id": "573520e4-1b44-4a66-9daa-6018050d8cd6", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9/action", "href_result": "/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9", "started_at": "2025-12-11T20:37:50.293171+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "357"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:37:50 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/573520e4-1b44-4a66-9daa-6018050d8cd6
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - c52a4e95-9e0b-40f2-98f5-fccda16dade2
+ status: 202 Accepted
+ code: 202
+ duration: 226.459211ms
+ - id: 17
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1800
+ body: '{"server": {"id": "deee089e-c6dc-4f43-b3cc-c23022fee4c9", "name": "test-tf-action-instance-export-snap-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2882a6c5-8006-4f9d-8555-2c9ac8ef8f85", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:37:49.456879+00:00", "modification_date": "2025-12-11T20:37:50.138755+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1800"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:37:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - ca30db30-0d90-4dbb-b8f8-1ec373a0be75
+ status: 200 OK
+ code: 200
+ duration: 107.731659ms
+ - id: 18
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1934
+ body: '{"server": {"id": "deee089e-c6dc-4f43-b3cc-c23022fee4c9", "name": "test-tf-action-instance-export-snap-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2882a6c5-8006-4f9d-8555-2c9ac8ef8f85", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:37:49.456879+00:00", "modification_date": "2025-12-11T20:37:52.785669+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "601", "node_id": "44"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1934"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:37:55 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - a69ca54a-7681-487c-b625-898dd199c274
+ status: 200 OK
+ code: 200
+ duration: 101.552186ms
+ - id: 19
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1934
+ body: '{"server": {"id": "deee089e-c6dc-4f43-b3cc-c23022fee4c9", "name": "test-tf-action-instance-export-snap-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2882a6c5-8006-4f9d-8555-2c9ac8ef8f85", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:37:49.456879+00:00", "modification_date": "2025-12-11T20:37:52.785669+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "601", "node_id": "44"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1934"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:37:55 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 6cdacd88-360d-4530-9e98-a6490896f217
+ status: 200 OK
+ code: 200
+ duration: 111.088793ms
+ - id: 20
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2882a6c5-8006-4f9d-8555-2c9ac8ef8f85
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "2882a6c5-8006-4f9d-8555-2c9ac8ef8f85"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:37:55 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - f62fac03-b7a9-497b-a19d-b0c9b29c1cba
+ status: 404 Not Found
+ code: 404
+ duration: 39.143556ms
+ - id: 21
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2882a6c5-8006-4f9d-8555-2c9ac8ef8f85
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"2882a6c5-8006-4f9d-8555-2c9ac8ef8f85","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:37:49.557560Z","updated_at":"2025-12-11T20:37:49.557560Z","references":[{"id":"c7651a4c-71f3-49de-9677-f0cdfecf2e4e","product_resource_type":"instance_server","product_resource_id":"deee089e-c6dc-4f43-b3cc-c23022fee4c9","created_at":"2025-12-11T20:37:49.557560Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:37:55 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 9f6e0b75-05d4-41cc-84f0-d74b918c5249
+ status: 200 OK
+ code: 200
+ duration: 43.678631ms
+ - id: 22
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:37:55 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - d9609f12-47bb-42e3-bff9-05e6ec7268d2
+ status: 200 OK
+ code: 200
+ duration: 49.256448ms
+ - id: 23
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:37:55 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 8b81e74d-ed8b-415a-a7b0-02a559d01201
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 47.124135ms
+ - id: 24
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 150
+ host: api.scaleway.com
+ body: '{"volume_id":"2882a6c5-8006-4f9d-8555-2c9ac8ef8f85","name":"tf-snapshot-beautiful-pike","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[]}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 463
+ body: '{"id":"ba60c3d6-1828-41f9-979c-41a8b2c29d3c","name":"tf-snapshot-beautiful-pike","parent_volume":{"id":"2882a6c5-8006-4f9d-8555-2c9ac8ef8f85","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","status":"in_use"},"size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:37:55.957334Z","updated_at":"2025-12-11T20:37:55.957334Z","references":[],"status":"creating","tags":[],"class":"sbs","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "463"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:37:56 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - a3106ca4-b9d1-4fbc-8e59-3471f160abc3
+ status: 200 OK
+ code: 200
+ duration: 405.736282ms
+ - id: 25
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ba60c3d6-1828-41f9-979c-41a8b2c29d3c
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 689
+ body: '{"id":"ba60c3d6-1828-41f9-979c-41a8b2c29d3c","name":"tf-snapshot-beautiful-pike","parent_volume":{"id":"2882a6c5-8006-4f9d-8555-2c9ac8ef8f85","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","status":"in_use"},"size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:37:55.957334Z","updated_at":"2025-12-11T20:37:55.957334Z","references":[{"id":"6f675d14-8a56-44ab-8939-589288870add","product_resource_type":"internal","product_resource_id":"00000000-0000-0000-0000-000000000000","created_at":"2025-12-11T20:37:56.014259Z","type":"unknown_type","status":"attached"}],"status":"creating","tags":[],"class":"sbs","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "689"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:37:56 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 1289e1b7-7249-4890-b08b-273e3d980288
+ status: 200 OK
+ code: 200
+ duration: 239.648995ms
+ - id: 26
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ba60c3d6-1828-41f9-979c-41a8b2c29d3c
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 464
+ body: '{"id":"ba60c3d6-1828-41f9-979c-41a8b2c29d3c","name":"tf-snapshot-beautiful-pike","parent_volume":{"id":"2882a6c5-8006-4f9d-8555-2c9ac8ef8f85","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","status":"in_use"},"size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:37:55.957334Z","updated_at":"2025-12-11T20:37:55.957334Z","references":[],"status":"available","tags":[],"class":"sbs","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "464"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:39:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - b3db373b-02a0-4dfb-be83-ef1bfbdeab0e
+ status: 200 OK
+ code: 200
+ duration: 231.560556ms
+ - id: 27
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ba60c3d6-1828-41f9-979c-41a8b2c29d3c
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 464
+ body: '{"id":"ba60c3d6-1828-41f9-979c-41a8b2c29d3c","name":"tf-snapshot-beautiful-pike","parent_volume":{"id":"2882a6c5-8006-4f9d-8555-2c9ac8ef8f85","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","status":"in_use"},"size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:37:55.957334Z","updated_at":"2025-12-11T20:37:55.957334Z","references":[],"status":"available","tags":[],"class":"sbs","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "464"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:39:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 6852bfe7-d95f-42eb-b6f0-9e400d3ea273
+ status: 200 OK
+ code: 200
+ duration: 286.842519ms
+ - id: 28
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/ba60c3d6-1828-41f9-979c-41a8b2c29d3c
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 145
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_snapshot", "resource_id": "ba60c3d6-1828-41f9-979c-41a8b2c29d3c"}'
+ headers:
+ Content-Length:
+ - "145"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:39:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 8f900a4c-c43a-41a9-9bee-9cb305571b13
+ status: 404 Not Found
+ code: 404
+ duration: 32.214041ms
+ - id: 29
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ba60c3d6-1828-41f9-979c-41a8b2c29d3c
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 464
+ body: '{"id":"ba60c3d6-1828-41f9-979c-41a8b2c29d3c","name":"tf-snapshot-beautiful-pike","parent_volume":{"id":"2882a6c5-8006-4f9d-8555-2c9ac8ef8f85","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","status":"in_use"},"size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:37:55.957334Z","updated_at":"2025-12-11T20:37:55.957334Z","references":[],"status":"available","tags":[],"class":"sbs","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "464"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:39:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 51060008-7669-4b4d-bdd6-d272867651e5
+ status: 200 OK
+ code: 200
+ duration: 226.860813ms
+ - id: 30
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 105
+ host: api.scaleway.com
+ body: '{"bucket":"test-acc-action-instance-export-snap-sbs-5011792431776155855","key":"exported-snapshot.qcow2"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ba60c3d6-1828-41f9-979c-41a8b2c29d3c/export-to-object-storage
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 464
+ body: '{"id":"ba60c3d6-1828-41f9-979c-41a8b2c29d3c","name":"tf-snapshot-beautiful-pike","parent_volume":{"id":"2882a6c5-8006-4f9d-8555-2c9ac8ef8f85","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","status":"in_use"},"size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:37:55.957334Z","updated_at":"2025-12-11T20:37:55.957334Z","references":[],"status":"exporting","tags":[],"class":"sbs","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "464"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:39:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 1a4067d0-3af8-4b92-9267-94f595a8acf8
+ status: 200 OK
+ code: 200
+ duration: 110.971866ms
+ - id: 31
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ba60c3d6-1828-41f9-979c-41a8b2c29d3c
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 464
+ body: '{"id":"ba60c3d6-1828-41f9-979c-41a8b2c29d3c","name":"tf-snapshot-beautiful-pike","parent_volume":{"id":"2882a6c5-8006-4f9d-8555-2c9ac8ef8f85","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","status":"in_use"},"size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:37:55.957334Z","updated_at":"2025-12-11T20:37:55.957334Z","references":[],"status":"exporting","tags":[],"class":"sbs","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "464"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:39:06 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 886d03af-4935-42ad-be11-ed064735dfbb
+ status: 200 OK
+ code: 200
+ duration: 266.852768ms
+ - id: 32
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - c8b0a65e-dded-4791-829c-f84f75857b36
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T203906Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: -1
+ body: ""
+ headers:
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:39:06 GMT
+ X-Amz-Bucket-Region:
+ - fr-par
+ X-Amz-Id-2:
+ - txg4514b3fce1ba4df58b3b-00693b2bea
+ X-Amz-Request-Id:
+ - txg4514b3fce1ba4df58b3b-00693b2bea
+ status: 200 OK
+ code: 200
+ duration: 55.942417ms
+ - id: 33
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - ad1329f2-fbbb-47d6-8609-4705112a0909
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T203906Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:39:06 GMT
+ X-Amz-Id-2:
+ - txg855bba247d9e43a3b832-00693b2bea
+ X-Amz-Request-Id:
+ - txg855bba247d9e43a3b832-00693b2bea
+ status: 200 OK
+ code: 200
+ duration: 15.002287ms
+ - id: 34
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ object-lock:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - cbf71faa-db4b-4332-a1ef-1ca20266391b
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T203906Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?object-lock=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 329
+ body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxgf0a29d578d00410488df-00693b2beatxgf0a29d578d00410488df-00693b2bea/test-acc-action-instance-export-snap-sbs-5011792431776155855
+ headers:
+ Content-Length:
+ - "329"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:39:06 GMT
+ X-Amz-Id-2:
+ - txgf0a29d578d00410488df-00693b2bea
+ X-Amz-Request-Id:
+ - txgf0a29d578d00410488df-00693b2bea
+ status: 404 Not Found
+ code: 404
+ duration: 69.577641ms
+ - id: 35
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1934
+ body: '{"server": {"id": "deee089e-c6dc-4f43-b3cc-c23022fee4c9", "name": "test-tf-action-instance-export-snap-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2882a6c5-8006-4f9d-8555-2c9ac8ef8f85", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:37:49.456879+00:00", "modification_date": "2025-12-11T20:37:52.785669+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "601", "node_id": "44"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1934"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:39:06 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 6044bd9c-19a2-43a5-b8d4-180a22e326a2
+ status: 200 OK
+ code: 200
+ duration: 89.713216ms
+ - id: 36
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2882a6c5-8006-4f9d-8555-2c9ac8ef8f85
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "2882a6c5-8006-4f9d-8555-2c9ac8ef8f85"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:39:06 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 0ab9c168-3643-423c-8ca2-644e74dececd
+ status: 404 Not Found
+ code: 404
+ duration: 31.000308ms
+ - id: 37
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2882a6c5-8006-4f9d-8555-2c9ac8ef8f85
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"2882a6c5-8006-4f9d-8555-2c9ac8ef8f85","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:37:49.557560Z","updated_at":"2025-12-11T20:37:49.557560Z","references":[{"id":"c7651a4c-71f3-49de-9677-f0cdfecf2e4e","product_resource_type":"instance_server","product_resource_id":"deee089e-c6dc-4f43-b3cc-c23022fee4c9","created_at":"2025-12-11T20:37:49.557560Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:39:06 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 528840e2-4828-4ece-8c7f-9d1273f1b6bb
+ status: 200 OK
+ code: 200
+ duration: 45.674407ms
+ - id: 38
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:39:06 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 7e8e1897-6652-4c81-9020-08573c57f121
+ status: 200 OK
+ code: 200
+ duration: 44.862529ms
+ - id: 39
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - e08b89cd-1e89-46c4-8492-9b83092db813
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T203906Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 286
+ body: |-
+
+ test-acc-action-instance-export-snap-sbs-50117924317761558551000false
+ headers:
+ Content-Length:
+ - "286"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:39:06 GMT
+ X-Amz-Id-2:
+ - txg25a7aeb79bd24d368276-00693b2bea
+ X-Amz-Request-Id:
+ - txg25a7aeb79bd24d368276-00693b2bea
+ status: 200 OK
+ code: 200
+ duration: 137.498776ms
+ - id: 40
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:39:06 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 1e19fa90-fc5b-496a-8280-7c61eba6a463
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 66.952312ms
+ - id: 41
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 2523d70c-f5b5-46e3-8be9-07225b6eaea2
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T203906Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 359
+ body: NoSuchTagSetThe TagSet does not existtxgaf2d9adbb1b64047b492-00693b2beatxgaf2d9adbb1b64047b492-00693b2bea/test-acc-action-instance-export-snap-sbs-5011792431776155855test-acc-action-instance-export-snap-sbs-5011792431776155855
+ headers:
+ Content-Length:
+ - "359"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:39:06 GMT
+ X-Amz-Id-2:
+ - txgaf2d9adbb1b64047b492-00693b2bea
+ X-Amz-Request-Id:
+ - txgaf2d9adbb1b64047b492-00693b2bea
+ status: 404 Not Found
+ code: 404
+ duration: 118.3946ms
+ - id: 42
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ cors:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 11d2c290-3c98-4d15-a247-2d29e2494d7f
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T203906Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?cors=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 297
+ body: NoSuchCORSConfigurationThe CORS configuration does not existtxg3e1e8bf86c004e5ea0ba-00693b2beatxg3e1e8bf86c004e5ea0ba-00693b2bea/test-acc-action-instance-export-snap-sbs-5011792431776155855
+ headers:
+ Content-Length:
+ - "297"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:39:06 GMT
+ X-Amz-Id-2:
+ - txg3e1e8bf86c004e5ea0ba-00693b2bea
+ X-Amz-Request-Id:
+ - txg3e1e8bf86c004e5ea0ba-00693b2bea
+ status: 404 Not Found
+ code: 404
+ duration: 16.787025ms
+ - id: 43
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ versioning:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 829886e4-9449-4a33-bea3-d5ee715b0789
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T203906Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?versioning=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 107
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "107"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:39:06 GMT
+ X-Amz-Id-2:
+ - txgbe557cef374a4e0f97a8-00693b2bea
+ X-Amz-Request-Id:
+ - txgbe557cef374a4e0f97a8-00693b2bea
+ status: 200 OK
+ code: 200
+ duration: 113.755162ms
+ - id: 44
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ lifecycle:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 3da8a264-9d2b-4495-aa9f-9e092a25d24c
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T203906Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 392
+ body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg207d5a9543834416ae1e-00693b2beatxg207d5a9543834416ae1e-00693b2bea/test-acc-action-instance-export-snap-sbs-5011792431776155855test-acc-action-instance-export-snap-sbs-5011792431776155855
+ headers:
+ Content-Length:
+ - "392"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:39:06 GMT
+ X-Amz-Id-2:
+ - txg207d5a9543834416ae1e-00693b2bea
+ X-Amz-Request-Id:
+ - txg207d5a9543834416ae1e-00693b2bea
+ status: 404 Not Found
+ code: 404
+ duration: 12.341871ms
+ - id: 45
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ba60c3d6-1828-41f9-979c-41a8b2c29d3c
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 464
+ body: '{"id":"ba60c3d6-1828-41f9-979c-41a8b2c29d3c","name":"tf-snapshot-beautiful-pike","parent_volume":{"id":"2882a6c5-8006-4f9d-8555-2c9ac8ef8f85","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","status":"in_use"},"size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:37:55.957334Z","updated_at":"2025-12-11T20:37:55.957334Z","references":[],"status":"exporting","tags":[],"class":"sbs","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "464"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:39:06 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 8d22eae0-bd3d-4eba-bf5b-8c2c650a0c47
+ status: 200 OK
+ code: 200
+ duration: 271.050575ms
+ - id: 46
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ba60c3d6-1828-41f9-979c-41a8b2c29d3c
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 464
+ body: '{"id":"ba60c3d6-1828-41f9-979c-41a8b2c29d3c","name":"tf-snapshot-beautiful-pike","parent_volume":{"id":"2882a6c5-8006-4f9d-8555-2c9ac8ef8f85","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","status":"in_use"},"size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:37:55.957334Z","updated_at":"2025-12-11T20:37:55.957334Z","references":[],"status":"available","tags":[],"class":"sbs","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "464"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:21 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - c7603f11-62c4-44b8-b234-a9c147e152af
+ status: 200 OK
+ code: 200
+ duration: 449.671653ms
+ - id: 47
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 2f0670a5-4824-4a5f-9ab5-f1159285c049
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204021Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:40:21 GMT
+ X-Amz-Id-2:
+ - txg4632e59a309b4a87a472-00693b2c35
+ X-Amz-Request-Id:
+ - txg4632e59a309b4a87a472-00693b2c35
+ status: 200 OK
+ code: 200
+ duration: 75.788657ms
+ - id: 48
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ object-lock:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 073fd81e-db13-415e-96c1-bbeb2a9636a3
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204021Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?object-lock=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 329
+ body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg0c5252c964a5432783ac-00693b2c35txg0c5252c964a5432783ac-00693b2c35/test-acc-action-instance-export-snap-sbs-5011792431776155855
+ headers:
+ Content-Length:
+ - "329"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:40:21 GMT
+ X-Amz-Id-2:
+ - txg0c5252c964a5432783ac-00693b2c35
+ X-Amz-Request-Id:
+ - txg0c5252c964a5432783ac-00693b2c35
+ status: 404 Not Found
+ code: 404
+ duration: 27.075552ms
+ - id: 49
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1934
+ body: '{"server": {"id": "deee089e-c6dc-4f43-b3cc-c23022fee4c9", "name": "test-tf-action-instance-export-snap-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2882a6c5-8006-4f9d-8555-2c9ac8ef8f85", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:37:49.456879+00:00", "modification_date": "2025-12-11T20:37:52.785669+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "601", "node_id": "44"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1934"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:21 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 71ad43b1-4dd3-4e4a-a766-90e34cae6f63
+ status: 200 OK
+ code: 200
+ duration: 114.091459ms
+ - id: 50
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 55607da1-23bb-4b00-b907-1481742e18ac
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204021Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 710
+ body: |-
+
+ test-acc-action-instance-export-snap-sbs-50117924317761558551000falseexported-snapshot.qcow22025-12-11T20:40:18.000Z"9ba1ffcdef80c5093b0f1915ecb637bf-471"2467561472fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552STANDARD
+ headers:
+ Content-Length:
+ - "710"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:40:21 GMT
+ X-Amz-Id-2:
+ - txg09bf7f642f7f4e1eb8ce-00693b2c35
+ X-Amz-Request-Id:
+ - txg09bf7f642f7f4e1eb8ce-00693b2c35
+ status: 200 OK
+ code: 200
+ duration: 23.635441ms
+ - id: 51
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2882a6c5-8006-4f9d-8555-2c9ac8ef8f85
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "2882a6c5-8006-4f9d-8555-2c9ac8ef8f85"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:21 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - f7b6ebf7-5f33-4501-b2d6-1eb64ad98f08
+ status: 404 Not Found
+ code: 404
+ duration: 31.063995ms
+ - id: 52
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2882a6c5-8006-4f9d-8555-2c9ac8ef8f85
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"2882a6c5-8006-4f9d-8555-2c9ac8ef8f85","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:37:49.557560Z","updated_at":"2025-12-11T20:37:49.557560Z","references":[{"id":"c7651a4c-71f3-49de-9677-f0cdfecf2e4e","product_resource_type":"instance_server","product_resource_id":"deee089e-c6dc-4f43-b3cc-c23022fee4c9","created_at":"2025-12-11T20:37:49.557560Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:22 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - a68f6e39-3fde-4c71-a0ea-7a8e7a62ed43
+ status: 200 OK
+ code: 200
+ duration: 51.782859ms
+ - id: 53
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - ce4eba11-450f-4394-8816-5b8f30e77365
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204021Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 359
+ body: NoSuchTagSetThe TagSet does not existtxge26b372004a54f78ad6d-00693b2c35txge26b372004a54f78ad6d-00693b2c35/test-acc-action-instance-export-snap-sbs-5011792431776155855test-acc-action-instance-export-snap-sbs-5011792431776155855
+ headers:
+ Content-Length:
+ - "359"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:40:21 GMT
+ X-Amz-Id-2:
+ - txge26b372004a54f78ad6d-00693b2c35
+ X-Amz-Request-Id:
+ - txge26b372004a54f78ad6d-00693b2c35
+ status: 404 Not Found
+ code: 404
+ duration: 116.772001ms
+ - id: 54
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:22 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - c182e917-8776-467e-8b19-e3ff5e67cad6
+ status: 200 OK
+ code: 200
+ duration: 50.734938ms
+ - id: 55
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ cors:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 8c78ab01-b919-4918-9698-ed22f5c4af5f
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204022Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?cors=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 297
+ body: NoSuchCORSConfigurationThe CORS configuration does not existtxga2d583833b634d689379-00693b2c36txga2d583833b634d689379-00693b2c36/test-acc-action-instance-export-snap-sbs-5011792431776155855
+ headers:
+ Content-Length:
+ - "297"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:40:22 GMT
+ X-Amz-Id-2:
+ - txga2d583833b634d689379-00693b2c36
+ X-Amz-Request-Id:
+ - txga2d583833b634d689379-00693b2c36
+ status: 404 Not Found
+ code: 404
+ duration: 7.26157ms
+ - id: 56
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ versioning:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 29560378-d3fd-4545-bd6a-a7c0617f8b12
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204022Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?versioning=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 107
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "107"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:40:22 GMT
+ X-Amz-Id-2:
+ - txg3e5c3e80c6d7407e9009-00693b2c36
+ X-Amz-Request-Id:
+ - txg3e5c3e80c6d7407e9009-00693b2c36
+ status: 200 OK
+ code: 200
+ duration: 35.369143ms
+ - id: 57
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:22 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - d2195429-2cde-4be1-bf3a-1b058308d0e5
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 64.115619ms
+ - id: 58
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ lifecycle:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - a5371aa1-061a-478a-9e07-5020a6791d64
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204022Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 392
+ body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxgd52265120b304a7ab87a-00693b2c36txgd52265120b304a7ab87a-00693b2c36/test-acc-action-instance-export-snap-sbs-5011792431776155855test-acc-action-instance-export-snap-sbs-5011792431776155855
+ headers:
+ Content-Length:
+ - "392"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:40:22 GMT
+ X-Amz-Id-2:
+ - txgd52265120b304a7ab87a-00693b2c36
+ X-Amz-Request-Id:
+ - txgd52265120b304a7ab87a-00693b2c36
+ status: 404 Not Found
+ code: 404
+ duration: 116.560162ms
+ - id: 59
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 51449b9a-0877-4ff9-9881-4a1267472bdf
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204022Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/exported-snapshot.qcow2
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2467561472
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "2467561472"
+ Content-Type:
+ - application/x-qemu-disk
+ Date:
+ - Thu, 11 Dec 2025 20:40:22 GMT
+ Etag:
+ - '"9ba1ffcdef80c5093b0f1915ecb637bf-471"'
+ Last-Modified:
+ - Thu, 11 Dec 2025 20:40:18 GMT
+ X-Amz-Id-2:
+ - txg0f8b3e3d42e74b12bc36-00693b2c36
+ X-Amz-Request-Id:
+ - txg0f8b3e3d42e74b12bc36-00693b2c36
+ status: 200 OK
+ code: 200
+ duration: 13.42284ms
+ - id: 60
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - f11abb50-1e22-4484-90fc-d18d6777466d
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204022Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/exported-snapshot.qcow2
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2467561472
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "2467561472"
+ Content-Type:
+ - application/x-qemu-disk
+ Date:
+ - Thu, 11 Dec 2025 20:40:22 GMT
+ Etag:
+ - '"9ba1ffcdef80c5093b0f1915ecb637bf-471"'
+ Last-Modified:
+ - Thu, 11 Dec 2025 20:40:18 GMT
+ X-Amz-Id-2:
+ - txgea1020dd400647a1ad4f-00693b2c36
+ X-Amz-Request-Id:
+ - txgea1020dd400647a1ad4f-00693b2c36
+ status: 200 OK
+ code: 200
+ duration: 12.066268ms
+ - id: 61
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 5760c24f-aa9b-4aca-b4fe-82938cde5f55
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204022Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/exported-snapshot.qcow2?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 75
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "75"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:40:22 GMT
+ X-Amz-Id-2:
+ - txg759533bceef042e591b0-00693b2c36
+ X-Amz-Request-Id:
+ - txg759533bceef042e591b0-00693b2c36
+ status: 200 OK
+ code: 200
+ duration: 6.87384ms
+ - id: 62
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - e31dd0e3-e846-4c4c-9f28-f2b4dd4e8ab7
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204022Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/exported-snapshot.qcow2?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:40:22 GMT
+ X-Amz-Id-2:
+ - txg4e84724bda3545ac9f17-00693b2c36
+ X-Amz-Request-Id:
+ - txg4e84724bda3545ac9f17-00693b2c36
+ status: 200 OK
+ code: 200
+ duration: 10.947293ms
+ - id: 63
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ba60c3d6-1828-41f9-979c-41a8b2c29d3c
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 464
+ body: '{"id":"ba60c3d6-1828-41f9-979c-41a8b2c29d3c","name":"tf-snapshot-beautiful-pike","parent_volume":{"id":"2882a6c5-8006-4f9d-8555-2c9ac8ef8f85","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","status":"in_use"},"size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:37:55.957334Z","updated_at":"2025-12-11T20:37:55.957334Z","references":[],"status":"available","tags":[],"class":"sbs","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "464"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:22 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - bad6ddb3-1bc4-4c83-804a-bf2710a543da
+ status: 200 OK
+ code: 200
+ duration: 252.94621ms
+ - id: 64
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 7a337b7b-5aff-439e-8202-26f212fde5bc
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204022Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/exported-snapshot.qcow2
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2467561472
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "2467561472"
+ Content-Type:
+ - application/x-qemu-disk
+ Date:
+ - Thu, 11 Dec 2025 20:40:22 GMT
+ Etag:
+ - '"9ba1ffcdef80c5093b0f1915ecb637bf-471"'
+ Last-Modified:
+ - Thu, 11 Dec 2025 20:40:18 GMT
+ X-Amz-Id-2:
+ - txge90a51cac70c4d00b316-00693b2c36
+ X-Amz-Request-Id:
+ - txge90a51cac70c4d00b316-00693b2c36
+ status: 200 OK
+ code: 200
+ duration: 9.545156ms
+ - id: 65
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 40f01221-3fe7-41c2-a828-8a299dcb9cd5
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204022Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/exported-snapshot.qcow2
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2467561472
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "2467561472"
+ Content-Type:
+ - application/x-qemu-disk
+ Date:
+ - Thu, 11 Dec 2025 20:40:22 GMT
+ Etag:
+ - '"9ba1ffcdef80c5093b0f1915ecb637bf-471"'
+ Last-Modified:
+ - Thu, 11 Dec 2025 20:40:18 GMT
+ X-Amz-Id-2:
+ - txgdf5090f2ea374b7da374-00693b2c36
+ X-Amz-Request-Id:
+ - txgdf5090f2ea374b7da374-00693b2c36
+ status: 200 OK
+ code: 200
+ duration: 10.978722ms
+ - id: 66
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - f952b198-28cd-4ede-8cf6-6621429d0876
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204022Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/exported-snapshot.qcow2?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 75
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "75"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:40:22 GMT
+ X-Amz-Id-2:
+ - txgbc03c1befe64421286ad-00693b2c36
+ X-Amz-Request-Id:
+ - txgbc03c1befe64421286ad-00693b2c36
+ status: 200 OK
+ code: 200
+ duration: 18.174047ms
+ - id: 67
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - cc377a69-80d2-4b6f-b8c3-07b2893c9f6e
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204022Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/exported-snapshot.qcow2?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:40:22 GMT
+ X-Amz-Id-2:
+ - txgf54db788083842c99f8e-00693b2c36
+ X-Amz-Request-Id:
+ - txgf54db788083842c99f8e-00693b2c36
+ status: 200 OK
+ code: 200
+ duration: 112.197385ms
+ - id: 68
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 221d1abe-6d85-42ad-92c1-37aacf2d9754
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204022Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:40:22 GMT
+ X-Amz-Id-2:
+ - txg4ee04d8c10334fa5b3bd-00693b2c36
+ X-Amz-Request-Id:
+ - txg4ee04d8c10334fa5b3bd-00693b2c36
+ status: 200 OK
+ code: 200
+ duration: 14.319096ms
+ - id: 69
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ object-lock:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - ca2b87b0-2e3e-4652-953c-7a98687991a2
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204022Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?object-lock=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 329
+ body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg33e834a3482e47368c04-00693b2c36txg33e834a3482e47368c04-00693b2c36/test-acc-action-instance-export-snap-sbs-5011792431776155855
+ headers:
+ Content-Length:
+ - "329"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:40:22 GMT
+ X-Amz-Id-2:
+ - txg33e834a3482e47368c04-00693b2c36
+ X-Amz-Request-Id:
+ - txg33e834a3482e47368c04-00693b2c36
+ status: 404 Not Found
+ code: 404
+ duration: 6.906792ms
+ - id: 70
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 01c75ddb-8157-4adb-9a38-8ef0f476fb4a
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204022Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 710
+ body: |-
+
+ test-acc-action-instance-export-snap-sbs-50117924317761558551000falseexported-snapshot.qcow22025-12-11T20:40:18.000Z"9ba1ffcdef80c5093b0f1915ecb637bf-471"2467561472fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552STANDARD
+ headers:
+ Content-Length:
+ - "710"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:40:22 GMT
+ X-Amz-Id-2:
+ - txgfdf9248cc6fb4bd7accb-00693b2c36
+ X-Amz-Request-Id:
+ - txgfdf9248cc6fb4bd7accb-00693b2c36
+ status: 200 OK
+ code: 200
+ duration: 8.850859ms
+ - id: 71
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - e99f1cae-116a-46df-a5fd-acaad399ee1d
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204022Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 359
+ body: NoSuchTagSetThe TagSet does not existtxgbb31838dcf9143c2aae1-00693b2c36txgbb31838dcf9143c2aae1-00693b2c36/test-acc-action-instance-export-snap-sbs-5011792431776155855test-acc-action-instance-export-snap-sbs-5011792431776155855
+ headers:
+ Content-Length:
+ - "359"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:40:22 GMT
+ X-Amz-Id-2:
+ - txgbb31838dcf9143c2aae1-00693b2c36
+ X-Amz-Request-Id:
+ - txgbb31838dcf9143c2aae1-00693b2c36
+ status: 404 Not Found
+ code: 404
+ duration: 9.56339ms
+ - id: 72
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ cors:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 657bd9fb-ea29-4ab0-80bd-066f44e2b9f3
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204022Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?cors=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 297
+ body: NoSuchCORSConfigurationThe CORS configuration does not existtxg70441bee00a443ae8e05-00693b2c36txg70441bee00a443ae8e05-00693b2c36/test-acc-action-instance-export-snap-sbs-5011792431776155855
+ headers:
+ Content-Length:
+ - "297"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:40:22 GMT
+ X-Amz-Id-2:
+ - txg70441bee00a443ae8e05-00693b2c36
+ X-Amz-Request-Id:
+ - txg70441bee00a443ae8e05-00693b2c36
+ status: 404 Not Found
+ code: 404
+ duration: 6.086039ms
+ - id: 73
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ versioning:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 470e5052-8392-4617-8502-376d1de59522
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204022Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?versioning=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 107
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "107"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:40:22 GMT
+ X-Amz-Id-2:
+ - txg0ad8d6f31ee948088e05-00693b2c36
+ X-Amz-Request-Id:
+ - txg0ad8d6f31ee948088e05-00693b2c36
+ status: 200 OK
+ code: 200
+ duration: 10.604669ms
+ - id: 74
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1934
+ body: '{"server": {"id": "deee089e-c6dc-4f43-b3cc-c23022fee4c9", "name": "test-tf-action-instance-export-snap-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2882a6c5-8006-4f9d-8555-2c9ac8ef8f85", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:37:49.456879+00:00", "modification_date": "2025-12-11T20:37:52.785669+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "601", "node_id": "44"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1934"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:22 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - dfad85f3-d812-4f13-8cb2-b9e4b83736f9
+ status: 200 OK
+ code: 200
+ duration: 103.150206ms
+ - id: 75
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2882a6c5-8006-4f9d-8555-2c9ac8ef8f85
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "2882a6c5-8006-4f9d-8555-2c9ac8ef8f85"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:22 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 5356cdf4-ab9e-4997-b934-436f515505b0
+ status: 404 Not Found
+ code: 404
+ duration: 32.9167ms
+ - id: 76
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ lifecycle:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 172b7ad7-dbc8-47a0-bc1c-26624f316608
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204022Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 392
+ body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg20249609164348baba16-00693b2c36txg20249609164348baba16-00693b2c36/test-acc-action-instance-export-snap-sbs-5011792431776155855test-acc-action-instance-export-snap-sbs-5011792431776155855
+ headers:
+ Content-Length:
+ - "392"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:40:22 GMT
+ X-Amz-Id-2:
+ - txg20249609164348baba16-00693b2c36
+ X-Amz-Request-Id:
+ - txg20249609164348baba16-00693b2c36
+ status: 404 Not Found
+ code: 404
+ duration: 115.553989ms
+ - id: 77
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - f2819312-293d-4100-8a0d-8741ce6eb359
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204023Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/exported-snapshot.qcow2
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2467561472
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "2467561472"
+ Content-Type:
+ - application/x-qemu-disk
+ Date:
+ - Thu, 11 Dec 2025 20:40:23 GMT
+ Etag:
+ - '"9ba1ffcdef80c5093b0f1915ecb637bf-471"'
+ Last-Modified:
+ - Thu, 11 Dec 2025 20:40:18 GMT
+ X-Amz-Id-2:
+ - txgf8ea8647a6e04db0a999-00693b2c37
+ X-Amz-Request-Id:
+ - txgf8ea8647a6e04db0a999-00693b2c37
+ status: 200 OK
+ code: 200
+ duration: 12.925354ms
+ - id: 78
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2882a6c5-8006-4f9d-8555-2c9ac8ef8f85
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"2882a6c5-8006-4f9d-8555-2c9ac8ef8f85","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:37:49.557560Z","updated_at":"2025-12-11T20:37:49.557560Z","references":[{"id":"c7651a4c-71f3-49de-9677-f0cdfecf2e4e","product_resource_type":"instance_server","product_resource_id":"deee089e-c6dc-4f43-b3cc-c23022fee4c9","created_at":"2025-12-11T20:37:49.557560Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:23 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 5e46b7c9-5e61-40c2-ac1e-8720a52c2b41
+ status: 200 OK
+ code: 200
+ duration: 59.586348ms
+ - id: 79
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 22a0155d-107c-4ab1-ab4c-67fc4cba3da0
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204023Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/exported-snapshot.qcow2
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2467561472
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "2467561472"
+ Content-Type:
+ - application/x-qemu-disk
+ Date:
+ - Thu, 11 Dec 2025 20:40:23 GMT
+ Etag:
+ - '"9ba1ffcdef80c5093b0f1915ecb637bf-471"'
+ Last-Modified:
+ - Thu, 11 Dec 2025 20:40:18 GMT
+ X-Amz-Id-2:
+ - txg1d1c089fd2584fe48260-00693b2c37
+ X-Amz-Request-Id:
+ - txg1d1c089fd2584fe48260-00693b2c37
+ status: 200 OK
+ code: 200
+ duration: 41.019272ms
+ - id: 80
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 3f21d6b5-d4f8-48de-94db-6bdfd10a46f6
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204023Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/exported-snapshot.qcow2?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 75
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "75"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:40:23 GMT
+ X-Amz-Id-2:
+ - txg0286052c23ba4019a4e8-00693b2c37
+ X-Amz-Request-Id:
+ - txg0286052c23ba4019a4e8-00693b2c37
+ status: 200 OK
+ code: 200
+ duration: 12.808143ms
+ - id: 81
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - acbf5786-154a-4366-b2b7-506bedc245ab
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204023Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/exported-snapshot.qcow2?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:40:23 GMT
+ X-Amz-Id-2:
+ - txg3ea1f30d2fa44aaeb206-00693b2c37
+ X-Amz-Request-Id:
+ - txg3ea1f30d2fa44aaeb206-00693b2c37
+ status: 200 OK
+ code: 200
+ duration: 9.865137ms
+ - id: 82
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:23 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - ec6e4241-64b0-4f30-b286-d61eb42666db
+ status: 200 OK
+ code: 200
+ duration: 67.974878ms
+ - id: 83
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:23 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - e6347ef2-91e8-4a0f-995c-a7da89723436
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 72.119674ms
+ - id: 84
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ba60c3d6-1828-41f9-979c-41a8b2c29d3c
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 464
+ body: '{"id":"ba60c3d6-1828-41f9-979c-41a8b2c29d3c","name":"tf-snapshot-beautiful-pike","parent_volume":{"id":"2882a6c5-8006-4f9d-8555-2c9ac8ef8f85","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","status":"in_use"},"size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:37:55.957334Z","updated_at":"2025-12-11T20:37:55.957334Z","references":[],"status":"available","tags":[],"class":"sbs","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "464"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:23 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 065bbe72-4842-4848-902c-1189ca700498
+ status: 200 OK
+ code: 200
+ duration: 298.637849ms
+ - id: 85
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - c4629a57-1130-48a2-98bd-38b2ceb0dc3a
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204023Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:40:23 GMT
+ X-Amz-Id-2:
+ - txgbaf3e3269c904d68ba20-00693b2c37
+ X-Amz-Request-Id:
+ - txgbaf3e3269c904d68ba20-00693b2c37
+ status: 200 OK
+ code: 200
+ duration: 10.248098ms
+ - id: 86
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ object-lock:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 97924824-e1f9-44a6-a37d-bdf8253c1edf
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204023Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?object-lock=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 329
+ body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxga0b4042575f94276b863-00693b2c37txga0b4042575f94276b863-00693b2c37/test-acc-action-instance-export-snap-sbs-5011792431776155855
+ headers:
+ Content-Length:
+ - "329"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:40:23 GMT
+ X-Amz-Id-2:
+ - txga0b4042575f94276b863-00693b2c37
+ X-Amz-Request-Id:
+ - txga0b4042575f94276b863-00693b2c37
+ status: 404 Not Found
+ code: 404
+ duration: 20.007165ms
+ - id: 87
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - ad879919-a641-4c89-9ff8-0ec1f98ee76e
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204023Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 710
+ body: |-
+
+ test-acc-action-instance-export-snap-sbs-50117924317761558551000falseexported-snapshot.qcow22025-12-11T20:40:18.000Z"9ba1ffcdef80c5093b0f1915ecb637bf-471"2467561472fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552STANDARD
+ headers:
+ Content-Length:
+ - "710"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:40:23 GMT
+ X-Amz-Id-2:
+ - txg5717d6cc09c745f9b951-00693b2c37
+ X-Amz-Request-Id:
+ - txg5717d6cc09c745f9b951-00693b2c37
+ status: 200 OK
+ code: 200
+ duration: 8.397276ms
+ - id: 88
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 6505845c-f834-4149-98b7-ef76ec56f1c0
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204023Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 359
+ body: NoSuchTagSetThe TagSet does not existtxg127ede59d421416582c7-00693b2c37txg127ede59d421416582c7-00693b2c37/test-acc-action-instance-export-snap-sbs-5011792431776155855test-acc-action-instance-export-snap-sbs-5011792431776155855
+ headers:
+ Content-Length:
+ - "359"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:40:23 GMT
+ X-Amz-Id-2:
+ - txg127ede59d421416582c7-00693b2c37
+ X-Amz-Request-Id:
+ - txg127ede59d421416582c7-00693b2c37
+ status: 404 Not Found
+ code: 404
+ duration: 12.614469ms
+ - id: 89
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ cors:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 631d5eb1-e6c4-4b9d-8597-e407345637ff
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204023Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?cors=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 297
+ body: NoSuchCORSConfigurationThe CORS configuration does not existtxg0139e030fab3485ca0b8-00693b2c37txg0139e030fab3485ca0b8-00693b2c37/test-acc-action-instance-export-snap-sbs-5011792431776155855
+ headers:
+ Content-Length:
+ - "297"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:40:23 GMT
+ X-Amz-Id-2:
+ - txg0139e030fab3485ca0b8-00693b2c37
+ X-Amz-Request-Id:
+ - txg0139e030fab3485ca0b8-00693b2c37
+ status: 404 Not Found
+ code: 404
+ duration: 8.326603ms
+ - id: 90
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ versioning:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - d52337df-ae8f-4af5-af22-d727d3c77db6
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204023Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?versioning=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 107
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "107"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:40:23 GMT
+ X-Amz-Id-2:
+ - txg1c9c4bc8a9c1497c9156-00693b2c37
+ X-Amz-Request-Id:
+ - txg1c9c4bc8a9c1497c9156-00693b2c37
+ status: 200 OK
+ code: 200
+ duration: 7.237384ms
+ - id: 91
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1934
+ body: '{"server": {"id": "deee089e-c6dc-4f43-b3cc-c23022fee4c9", "name": "test-tf-action-instance-export-snap-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2882a6c5-8006-4f9d-8555-2c9ac8ef8f85", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:37:49.456879+00:00", "modification_date": "2025-12-11T20:37:52.785669+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "601", "node_id": "44"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1934"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:23 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 0b493713-70bc-473e-b503-88621eb07570
+ status: 200 OK
+ code: 200
+ duration: 99.001833ms
+ - id: 92
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2882a6c5-8006-4f9d-8555-2c9ac8ef8f85
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "2882a6c5-8006-4f9d-8555-2c9ac8ef8f85"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:23 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 690c9caf-7d01-454d-b65a-9c05a4efdb6d
+ status: 404 Not Found
+ code: 404
+ duration: 34.281367ms
+ - id: 93
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2882a6c5-8006-4f9d-8555-2c9ac8ef8f85
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"2882a6c5-8006-4f9d-8555-2c9ac8ef8f85","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:37:49.557560Z","updated_at":"2025-12-11T20:37:49.557560Z","references":[{"id":"c7651a4c-71f3-49de-9677-f0cdfecf2e4e","product_resource_type":"instance_server","product_resource_id":"deee089e-c6dc-4f43-b3cc-c23022fee4c9","created_at":"2025-12-11T20:37:49.557560Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:23 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - cfc2c9f1-f941-4571-a5cd-dfd6282c902e
+ status: 200 OK
+ code: 200
+ duration: 57.133243ms
+ - id: 94
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:23 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 6892ee4c-feb4-4bde-9e87-cf48cad223a4
+ status: 200 OK
+ code: 200
+ duration: 45.633541ms
+ - id: 95
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:23 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 24156190-c1a6-40fc-9128-ec3f36536fc6
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 75.103137ms
+ - id: 96
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ba60c3d6-1828-41f9-979c-41a8b2c29d3c
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 464
+ body: '{"id":"ba60c3d6-1828-41f9-979c-41a8b2c29d3c","name":"tf-snapshot-beautiful-pike","parent_volume":{"id":"2882a6c5-8006-4f9d-8555-2c9ac8ef8f85","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","status":"in_use"},"size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:37:55.957334Z","updated_at":"2025-12-11T20:37:55.957334Z","references":[],"status":"available","tags":[],"class":"sbs","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "464"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:23 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 4e62f1c8-7f4e-4d07-9e4a-b16c130444d3
+ status: 200 OK
+ code: 200
+ duration: 342.207377ms
+ - id: 97
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ lifecycle:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 2b4e10d9-1f79-4333-a67c-a2f6d314cbb8
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204023Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 392
+ body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg60b43646713d4ffe92d3-00693b2c37txg60b43646713d4ffe92d3-00693b2c37/test-acc-action-instance-export-snap-sbs-5011792431776155855test-acc-action-instance-export-snap-sbs-5011792431776155855
+ headers:
+ Content-Length:
+ - "392"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:40:23 GMT
+ X-Amz-Id-2:
+ - txg60b43646713d4ffe92d3-00693b2c37
+ X-Amz-Request-Id:
+ - txg60b43646713d4ffe92d3-00693b2c37
+ status: 404 Not Found
+ code: 404
+ duration: 564.867562ms
+ - id: 98
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ba60c3d6-1828-41f9-979c-41a8b2c29d3c
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 464
+ body: '{"id":"ba60c3d6-1828-41f9-979c-41a8b2c29d3c","name":"tf-snapshot-beautiful-pike","parent_volume":{"id":"2882a6c5-8006-4f9d-8555-2c9ac8ef8f85","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","status":"in_use"},"size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:37:55.957334Z","updated_at":"2025-12-11T20:37:55.957334Z","references":[],"status":"available","tags":[],"class":"sbs","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "464"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:24 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - ee280f26-1b32-4201-a9b9-466e8518bbef
+ status: 200 OK
+ code: 200
+ duration: 257.316859ms
+ - id: 99
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ba60c3d6-1828-41f9-979c-41a8b2c29d3c
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:24 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - a52f6aed-4862-4ec5-9e6c-f8e0bdc11b38
+ status: 204 No Content
+ code: 204
+ duration: 266.78499ms
+ - id: 100
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ba60c3d6-1828-41f9-979c-41a8b2c29d3c
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 129
+ body: '{"message":"resource is not found","resource":"snapshot","resource_id":"ba60c3d6-1828-41f9-979c-41a8b2c29d3c","type":"not_found"}'
+ headers:
+ Content-Length:
+ - "129"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:24 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 9a2b3813-87b3-4282-bf88-6ff01965009c
+ status: 404 Not Found
+ code: 404
+ duration: 54.022151ms
+ - id: 101
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1934
+ body: '{"server": {"id": "deee089e-c6dc-4f43-b3cc-c23022fee4c9", "name": "test-tf-action-instance-export-snap-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2882a6c5-8006-4f9d-8555-2c9ac8ef8f85", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:37:49.456879+00:00", "modification_date": "2025-12-11T20:37:52.785669+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "601", "node_id": "44"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1934"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:25 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - fe916e14-eab7-471a-99f4-b6b1a9bff24d
+ status: 200 OK
+ code: 200
+ duration: 84.98795ms
+ - id: 102
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1934
+ body: '{"server": {"id": "deee089e-c6dc-4f43-b3cc-c23022fee4c9", "name": "test-tf-action-instance-export-snap-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2882a6c5-8006-4f9d-8555-2c9ac8ef8f85", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:37:49.456879+00:00", "modification_date": "2025-12-11T20:37:52.785669+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "601", "node_id": "44"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1934"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:25 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 51d4687b-dace-42e2-9e3b-c1cd8a1d8944
+ status: 200 OK
+ code: 200
+ duration: 102.742869ms
+ - id: 103
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 22
+ host: api.scaleway.com
+ body: '{"action":"terminate"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 353
+ body: '{"task": {"id": "befe5ca2-a8e6-43fe-b489-c46751f23528", "description": "server_terminate", "status": "pending", "href_from": "/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9/action", "href_result": "/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9", "started_at": "2025-12-11T20:40:25.309172+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "353"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:25 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/befe5ca2-a8e6-43fe-b489-c46751f23528
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - c1bf35ff-6fa9-434d-af7b-55f18bdbd10d
+ status: 202 Accepted
+ code: 202
+ duration: 192.629715ms
+ - id: 104
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1897
+ body: '{"server": {"id": "deee089e-c6dc-4f43-b3cc-c23022fee4c9", "name": "test-tf-action-instance-export-snap-sbs", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snap-sbs", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "2882a6c5-8006-4f9d-8555-2c9ac8ef8f85", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9a:93", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:37:49.456879+00:00", "modification_date": "2025-12-11T20:40:25.168235+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "601", "node_id": "44"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1897"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:25 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 649ed161-7b50-4f7b-b266-a3fbb7e6d837
+ status: 200 OK
+ code: 200
+ duration: 84.529237ms
+ - id: 105
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/deee089e-c6dc-4f43-b3cc-c23022fee4c9
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "deee089e-c6dc-4f43-b3cc-c23022fee4c9"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:30 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - b4c3c0fc-1019-4614-9963-b16fd48378e1
+ status: 404 Not Found
+ code: 404
+ duration: 58.501667ms
+ - id: 106
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2882a6c5-8006-4f9d-8555-2c9ac8ef8f85
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "2882a6c5-8006-4f9d-8555-2c9ac8ef8f85"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:30 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - cc1de859-6a39-4244-beda-0c90d48eb7da
+ status: 404 Not Found
+ code: 404
+ duration: 28.88788ms
+ - id: 107
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2882a6c5-8006-4f9d-8555-2c9ac8ef8f85
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 484
+ body: '{"id":"2882a6c5-8006-4f9d-8555-2c9ac8ef8f85","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T20:37:49.557560Z","updated_at":"2025-12-11T20:40:26.565298Z","references":[],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"available","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":"2025-12-11T20:40:26.565298Z","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "484"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:30 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 4851604f-05eb-4d9d-863c-f09ba6e15ee0
+ status: 200 OK
+ code: 200
+ duration: 44.899589ms
+ - id: 108
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2882a6c5-8006-4f9d-8555-2c9ac8ef8f85
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:40:30 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 9c568e5f-ae7a-4c13-8d4d-48e69a12cd1f
+ status: 204 No Content
+ code: 204
+ duration: 80.371374ms
+ - id: 109
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 670e08a1-77af-484b-a8c7-2d558a584aa8
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204030Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 710
+ body: |-
+
+ test-acc-action-instance-export-snap-sbs-50117924317761558551000falseexported-snapshot.qcow22025-12-11T20:40:18.000Z"9ba1ffcdef80c5093b0f1915ecb637bf-471"2467561472fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552STANDARD
+ headers:
+ Content-Length:
+ - "710"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:40:30 GMT
+ X-Amz-Id-2:
+ - txg0ee0f172bec940abb4bd-00693b2c3e
+ X-Amz-Request-Id:
+ - txg0ee0f172bec940abb4bd-00693b2c3e
+ status: 200 OK
+ code: 200
+ duration: 45.202049ms
+ - id: 110
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ x-id:
+ - DeleteObject
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 96ea63b5-2d62-48d5-9648-b24516dc14d9
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204030Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/exported-snapshot.qcow2?x-id=DeleteObject
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Date:
+ - Thu, 11 Dec 2025 20:40:30 GMT
+ X-Amz-Id-2:
+ - txg1a208071c226461cab6b-00693b2c3e
+ X-Amz-Request-Id:
+ - txg1a208071c226461cab6b-00693b2c3e
+ status: 204 No Content
+ code: 204
+ duration: 1.518032226s
+ - id: 111
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 36fdb31b-5c45-4755-a901-4c925c5e7d0b
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204032Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:40:32 GMT
+ X-Amz-Id-2:
+ - txg21f5b47a01f34233ac61-00693b2c40
+ X-Amz-Request-Id:
+ - txg21f5b47a01f34233ac61-00693b2c40
+ status: 200 OK
+ code: 200
+ duration: 28.90392ms
+ - id: 112
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ object-lock:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - f5abfc0f-df2c-4b34-8f72-83dcd0e9c410
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204032Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?object-lock=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 329
+ body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg89310a173b05437dac71-00693b2c40txg89310a173b05437dac71-00693b2c40/test-acc-action-instance-export-snap-sbs-5011792431776155855
+ headers:
+ Content-Length:
+ - "329"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:40:32 GMT
+ X-Amz-Id-2:
+ - txg89310a173b05437dac71-00693b2c40
+ X-Amz-Request-Id:
+ - txg89310a173b05437dac71-00693b2c40
+ status: 404 Not Found
+ code: 404
+ duration: 25.205723ms
+ - id: 113
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 126135cd-7363-44a0-b222-544843184c02
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204032Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 286
+ body: |-
+
+ test-acc-action-instance-export-snap-sbs-50117924317761558551000false
+ headers:
+ Content-Length:
+ - "286"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:40:32 GMT
+ X-Amz-Id-2:
+ - txga5af5ba5f19e40f78c7d-00693b2c40
+ X-Amz-Request-Id:
+ - txga5af5ba5f19e40f78c7d-00693b2c40
+ status: 200 OK
+ code: 200
+ duration: 25.58154ms
+ - id: 114
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 36278346-11ac-4265-9adb-2e81fae610a3
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204032Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 359
+ body: NoSuchTagSetThe TagSet does not existtxg61d029e3505348429bf5-00693b2c40txg61d029e3505348429bf5-00693b2c40/test-acc-action-instance-export-snap-sbs-5011792431776155855test-acc-action-instance-export-snap-sbs-5011792431776155855
+ headers:
+ Content-Length:
+ - "359"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:40:32 GMT
+ X-Amz-Id-2:
+ - txg61d029e3505348429bf5-00693b2c40
+ X-Amz-Request-Id:
+ - txg61d029e3505348429bf5-00693b2c40
+ status: 404 Not Found
+ code: 404
+ duration: 14.072451ms
+ - id: 115
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ cors:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 32163035-3418-4be3-a3e7-cae906604638
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204032Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?cors=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 297
+ body: NoSuchCORSConfigurationThe CORS configuration does not existtxgc86b93839008403e9cb7-00693b2c40txgc86b93839008403e9cb7-00693b2c40/test-acc-action-instance-export-snap-sbs-5011792431776155855
+ headers:
+ Content-Length:
+ - "297"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:40:32 GMT
+ X-Amz-Id-2:
+ - txgc86b93839008403e9cb7-00693b2c40
+ X-Amz-Request-Id:
+ - txgc86b93839008403e9cb7-00693b2c40
+ status: 404 Not Found
+ code: 404
+ duration: 15.509224ms
+ - id: 116
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ versioning:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 7bc757c7-a047-4559-8710-4d0af004be9a
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204032Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?versioning=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 107
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "107"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:40:32 GMT
+ X-Amz-Id-2:
+ - txgfae0ec8c3bf6414fbe2b-00693b2c40
+ X-Amz-Request-Id:
+ - txgfae0ec8c3bf6414fbe2b-00693b2c40
+ status: 200 OK
+ code: 200
+ duration: 16.143347ms
+ - id: 117
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ form:
+ lifecycle:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 33bda95f-2f6b-412d-a572-ac6d61a3aeed
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204032Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 392
+ body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxgc87ffb7f6ec64dcc9bf7-00693b2c40txgc87ffb7f6ec64dcc9bf7-00693b2c40/test-acc-action-instance-export-snap-sbs-5011792431776155855test-acc-action-instance-export-snap-sbs-5011792431776155855
+ headers:
+ Content-Length:
+ - "392"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:40:32 GMT
+ X-Amz-Id-2:
+ - txgc87ffb7f6ec64dcc9bf7-00693b2c40
+ X-Amz-Request-Id:
+ - txgc87ffb7f6ec64dcc9bf7-00693b2c40
+ status: 404 Not Found
+ code: 404
+ duration: 9.163937ms
+ - id: 118
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 60dfc1bb-2eda-4add-a666-c32395b1a7f0
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T204032Z
+ url: https://test-acc-action-instance-export-snap-sbs-5011792431776155855.s3.fr-par.scw.cloud/
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Date:
+ - Thu, 11 Dec 2025 20:40:32 GMT
+ X-Amz-Id-2:
+ - txgc1065e18b52849268e47-00693b2c40
+ X-Amz-Request-Id:
+ - txgc1065e18b52849268e47-00693b2c40
+ status: 204 No Content
+ code: 204
+ duration: 168.101649ms
diff --git a/internal/services/instance/testdata/action-instance-export-snapshot-wait.cassette.yaml b/internal/services/instance/testdata/action-instance-export-snapshot-wait.cassette.yaml
new file mode 100644
index 000000000..0bf650a62
--- /dev/null
+++ b/internal/services/instance/testdata/action-instance-export-snapshot-wait.cassette.yaml
@@ -0,0 +1,6742 @@
+---
+version: 2
+interactions:
+ - id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ page:
+ - "1"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 39202
+ body: '{"servers": {"BASIC2-A16C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.89, "hourly_price": 0.2067, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 201.19, "hourly_price": 0.2756, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A2C-4G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 16.79, "hourly_price": 0.023, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 25.19, "hourly_price": 0.0345, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 50.3, "hourly_price": 0.0689, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A4C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 37.74, "hourly_price": 0.0517, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A8C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.48, "hourly_price": 0.1034, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "BASIC2-A8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 100.59, "hourly_price": 0.1378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 30.66, "hourly_price": 0.042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.454, "hourly_price": 0.0198, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.424, "hourly_price": 0.0088, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 46.5734, "hourly_price": 0.06378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 554.07, "hourly_price": 0.759, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 274.48, "hourly_price": 0.376, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 136.51, "hourly_price": 0.187, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1197.93, "hourly_price": 1.641, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 66.43, "hourly_price": 0.091, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}}}'
+ headers:
+ Content-Length:
+ - "39202"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:54:47 GMT
+ Link:
+ - ; rel="next",; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 5bc4f6ac-3fed-4e67-b90b-bf5c20372c8e
+ X-Total-Count:
+ - "76"
+ status: 200 OK
+ code: 200
+ duration: 82.441806ms
+ - id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ page:
+ - "2"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20510
+ body: '{"servers": {"POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 891.33, "hourly_price": 1.221, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 0.1095, "hourly_price": 0.00015, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}'
+ headers:
+ Content-Length:
+ - "20510"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:54:47 GMT
+ Link:
+ - ; rel="first",; rel="previous",; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 7a8e806a-26ff-4227-a742-4442077fd3e3
+ X-Total-Count:
+ - "76"
+ status: 200 OK
+ code: 200
+ duration: 47.068617ms
+ - id: 2
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ image_label:
+ - ubuntu_jammy
+ order_by:
+ - type_asc
+ type:
+ - instance_local
+ zone:
+ - fr-par-1
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_local&zone=fr-par-1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 397
+ body: '{"local_images":[{"id":"ec31d73d-ca36-4536-adf4-0feb76d30379","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"label":"ubuntu_jammy","type":"instance_local"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "397"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:54:47 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 4888acf4-7295-423f-9471-bd5c0ad0d869
+ status: 200 OK
+ code: 200
+ duration: 133.192641ms
+ - id: 3
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 26dd8124-9701-4fe3-9773-ec6004d23687
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175447Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/
+ method: PUT
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Content-Length:
+ - "0"
+ Date:
+ - Thu, 11 Dec 2025 17:54:47 GMT
+ Location:
+ - /test-acc-action-instance-export-snap-wait-6334876314542282935
+ X-Amz-Id-2:
+ - txg445c3a3242084b0d9a0f-00693b0567
+ X-Amz-Request-Id:
+ - txg445c3a3242084b0d9a0f-00693b0567
+ status: 200 OK
+ code: 200
+ duration: 484.025819ms
+ - id: 4
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - a8e87a29-c34f-4475-89dd-5afb1a52dc2d
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,Z,e
+ X-Amz-Acl:
+ - private
+ X-Amz-Checksum-Crc32:
+ - AAAAAA==
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175448Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?acl=
+ method: PUT
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Content-Length:
+ - "0"
+ Date:
+ - Thu, 11 Dec 2025 17:54:48 GMT
+ X-Amz-Id-2:
+ - txg30a11b30740b46bda713-00693b0568
+ X-Amz-Request-Id:
+ - txg30a11b30740b46bda713-00693b0568
+ status: 200 OK
+ code: 200
+ duration: 44.778487ms
+ - id: 5
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - bcd2c63d-4aa0-4f17-a2a7-d253f1c6ab37
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175448Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 17:54:48 GMT
+ X-Amz-Id-2:
+ - txg16be480f64064d57bc72-00693b0568
+ X-Amz-Request-Id:
+ - txg16be480f64064d57bc72-00693b0568
+ status: 200 OK
+ code: 200
+ duration: 28.371765ms
+ - id: 6
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ object-lock:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - c1c815e3-fe7b-4c37-af08-a4d31017992b
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175448Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?object-lock=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 330
+ body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg7b1836546aa848228414-00693b0568txg7b1836546aa848228414-00693b0568/test-acc-action-instance-export-snap-wait-6334876314542282935
+ headers:
+ Content-Length:
+ - "330"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:54:48 GMT
+ X-Amz-Id-2:
+ - txg7b1836546aa848228414-00693b0568
+ X-Amz-Request-Id:
+ - txg7b1836546aa848228414-00693b0568
+ status: 404 Not Found
+ code: 404
+ duration: 16.14904ms
+ - id: 7
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 298
+ host: api.scaleway.com
+ body: '{"name":"test-tf-action-instance-export-snapshot-wait","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"ec31d73d-ca36-4536-adf4-0feb76d30379","volumes":{"0":{"boot":false,"size":10000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2218
+ body: '{"server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-wait", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:54:47.983165+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:54:47.983165+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2218"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:54:48 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7cca016-6a77-4142-b477-6171a135cfe6
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 98dd6724-1069-4670-a850-29e82fa38ce5
+ status: 201 Created
+ code: 201
+ duration: 327.143946ms
+ - id: 8
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - e998bba1-0507-4c12-ad1d-6e7376f2d6ed
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175448Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 287
+ body: |-
+
+ test-acc-action-instance-export-snap-wait-63348763145422829351000false
+ headers:
+ Content-Length:
+ - "287"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:54:48 GMT
+ X-Amz-Id-2:
+ - txg87ed4fbf08c643168779-00693b0568
+ X-Amz-Request-Id:
+ - txg87ed4fbf08c643168779-00693b0568
+ status: 200 OK
+ code: 200
+ duration: 24.946139ms
+ - id: 9
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 161d7ef0-d64b-4841-b2f3-11ef53100416
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175448Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 361
+ body: NoSuchTagSetThe TagSet does not existtxg897a7f2c65b3463eb972-00693b0568txg897a7f2c65b3463eb972-00693b0568/test-acc-action-instance-export-snap-wait-6334876314542282935test-acc-action-instance-export-snap-wait-6334876314542282935
+ headers:
+ Content-Length:
+ - "361"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:54:48 GMT
+ X-Amz-Id-2:
+ - txg897a7f2c65b3463eb972-00693b0568
+ X-Amz-Request-Id:
+ - txg897a7f2c65b3463eb972-00693b0568
+ status: 404 Not Found
+ code: 404
+ duration: 18.132155ms
+ - id: 10
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7cca016-6a77-4142-b477-6171a135cfe6
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2218
+ body: '{"server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-wait", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:54:47.983165+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:54:47.983165+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2218"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:54:48 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - a1cd62bc-43d0-4d47-bef4-81adb4776b69
+ status: 200 OK
+ code: 200
+ duration: 106.138415ms
+ - id: 11
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ cors:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 554c57b7-fca9-4b8a-9d27-8d5ebc592748
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175448Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?cors=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 298
+ body: NoSuchCORSConfigurationThe CORS configuration does not existtxg13bed6c461f4411c8de9-00693b0568txg13bed6c461f4411c8de9-00693b0568/test-acc-action-instance-export-snap-wait-6334876314542282935
+ headers:
+ Content-Length:
+ - "298"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:54:48 GMT
+ X-Amz-Id-2:
+ - txg13bed6c461f4411c8de9-00693b0568
+ X-Amz-Request-Id:
+ - txg13bed6c461f4411c8de9-00693b0568
+ status: 404 Not Found
+ code: 404
+ duration: 119.688828ms
+ - id: 12
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ versioning:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 6a260155-ab5e-4a98-bf8d-aa968f60736c
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175448Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?versioning=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 107
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "107"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 17:54:48 GMT
+ X-Amz-Id-2:
+ - txga5b80b0b9e654ae9a855-00693b0568
+ X-Amz-Request-Id:
+ - txga5b80b0b9e654ae9a855-00693b0568
+ status: 200 OK
+ code: 200
+ duration: 13.093597ms
+ - id: 13
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ lifecycle:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 80351831-d13e-4214-a0e8-ab87b9aa1cbe
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175448Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 394
+ body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg24e78bcd1b264f338365-00693b0568txg24e78bcd1b264f338365-00693b0568/test-acc-action-instance-export-snap-wait-6334876314542282935test-acc-action-instance-export-snap-wait-6334876314542282935
+ headers:
+ Content-Length:
+ - "394"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:54:48 GMT
+ X-Amz-Id-2:
+ - txg24e78bcd1b264f338365-00693b0568
+ X-Amz-Request-Id:
+ - txg24e78bcd1b264f338365-00693b0568
+ status: 404 Not Found
+ code: 404
+ duration: 15.082162ms
+ - id: 14
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7cca016-6a77-4142-b477-6171a135cfe6
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2218
+ body: '{"server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-wait", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:54:47.983165+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:54:47.983165+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2218"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:54:48 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 2e7618de-a5b7-4f8e-8b40-342ec84ef2b9
+ status: 200 OK
+ code: 200
+ duration: 96.259301ms
+ - id: 15
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 20
+ host: api.scaleway.com
+ body: '{"action":"poweron"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7cca016-6a77-4142-b477-6171a135cfe6/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 357
+ body: '{"task": {"id": "1a333db3-56d5-4b53-ae40-5d52babc898b", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/d7cca016-6a77-4142-b477-6171a135cfe6/action", "href_result": "/servers/d7cca016-6a77-4142-b477-6171a135cfe6", "started_at": "2025-12-11T17:54:48.584623+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "357"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:54:48 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1a333db3-56d5-4b53-ae40-5d52babc898b
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - ab082dde-4fb5-4312-844a-2fa5ffcd2113
+ status: 202 Accepted
+ code: 202
+ duration: 211.081422ms
+ - id: 16
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7cca016-6a77-4142-b477-6171a135cfe6
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2240
+ body: '{"server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-wait", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:54:47.983165+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:54:48.422702+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2240"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:54:48 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - e6ce9bf2-81da-47ec-979f-554868ca12ad
+ status: 200 OK
+ code: 200
+ duration: 88.106297ms
+ - id: 17
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7cca016-6a77-4142-b477-6171a135cfe6
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2343
+ body: '{"server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-wait", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:54:47.983165+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:54:48.422702+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "804", "node_id": "34"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2343"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:54:53 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 1c4bd983-42b8-4d32-96f6-e96a02f19a83
+ status: 200 OK
+ code: 200
+ duration: 83.675405ms
+ - id: 18
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7cca016-6a77-4142-b477-6171a135cfe6
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2374
+ body: '{"server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-wait", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:54:47.983165+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:54:56.917938+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "804", "node_id": "34"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2374"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:54:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 1e0aa380-51d6-4acf-9a7c-56b23755dc31
+ status: 200 OK
+ code: 200
+ duration: 77.361943ms
+ - id: 19
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7cca016-6a77-4142-b477-6171a135cfe6
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2374
+ body: '{"server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-wait", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:54:47.983165+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:54:56.917938+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "804", "node_id": "34"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2374"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:54:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 7bb174f8-db72-4525-a2d2-d20cb165673e
+ status: 200 OK
+ code: 200
+ duration: 95.881296ms
+ - id: 20
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1b3e226a-e4bb-43c0-a3df-2760a7206dfa
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 528
+ body: '{"volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:54:47.983165+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "528"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:54:59 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - daafc819-4dbb-4a09-87dc-1e46a63abd42
+ status: 200 OK
+ code: 200
+ duration: 62.591654ms
+ - id: 21
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7cca016-6a77-4142-b477-6171a135cfe6/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:54:59 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 47215860-78a2-4388-8cad-3952a4001793
+ status: 200 OK
+ code: 200
+ duration: 64.965733ms
+ - id: 22
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7cca016-6a77-4142-b477-6171a135cfe6/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:54:59 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 961b27e4-cb01-43de-90fe-39e63667a20d
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 75.02702ms
+ - id: 23
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 135
+ host: api.scaleway.com
+ body: '{"name":"tf-snap-stoic-cartwright","volume_id":"1b3e226a-e4bb-43c0-a3df-2760a7206dfa","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 852
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:54:59.233490+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}, "task": {"id": "13867673-84d7-4e67-a975-ea0a534c97bf", "description": "volume_snapshot", "status": "pending", "href_from": "/snapshots", "href_result": "snapshots/01a80b8a-193e-49d6-b491-07523127f233", "started_at": "2025-12-11T17:54:59.408939+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "852"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:54:59 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 595d9011-4874-43da-96a6-df2369db4dda
+ status: 201 Created
+ code: 201
+ duration: 340.797125ms
+ - id: 24
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 541
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:54:59.233490+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "541"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:54:59 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - eeb23a81-e4a0-406b-ad01-fad00a15caf7
+ status: 200 OK
+ code: 200
+ duration: 69.985807ms
+ - id: 25
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 541
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:54:59.233490+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "541"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:55:04 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - e38fa18f-70f3-4489-a805-affc394af7fa
+ status: 200 OK
+ code: 200
+ duration: 61.541402ms
+ - id: 26
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 541
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:54:59.233490+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "541"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:55:09 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 30f419f0-5787-45b5-8312-4133800ce85c
+ status: 200 OK
+ code: 200
+ duration: 52.009448ms
+ - id: 27
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 541
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:54:59.233490+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "541"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:55:14 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 2c833588-4442-4533-896b-204f6bb18602
+ status: 200 OK
+ code: 200
+ duration: 46.443473ms
+ - id: 28
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 541
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:54:59.233490+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "541"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:55:19 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 03d15722-65c4-4181-a7a6-eba0689103f0
+ status: 200 OK
+ code: 200
+ duration: 49.359369ms
+ - id: 29
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 541
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:54:59.233490+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "541"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:55:24 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 62988023-c391-4c98-88a9-54accf558f9e
+ status: 200 OK
+ code: 200
+ duration: 67.240857ms
+ - id: 30
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 541
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:54:59.233490+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "541"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:55:29 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 4286feaa-d23b-43ff-bb06-8f7a84de3946
+ status: 200 OK
+ code: 200
+ duration: 63.022748ms
+ - id: 31
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 541
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:54:59.233490+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "541"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:55:35 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 53b206f3-8964-4ae9-930a-93be0bef592e
+ status: 200 OK
+ code: 200
+ duration: 70.003424ms
+ - id: 32
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 541
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:54:59.233490+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "541"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:55:40 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 7da57112-ad65-4dcc-88e7-05b415916149
+ status: 200 OK
+ code: 200
+ duration: 49.204313ms
+ - id: 33
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 541
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:54:59.233490+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "541"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:55:45 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - a07c4a76-bfa9-4ec6-b4f3-3ae70d442a45
+ status: 200 OK
+ code: 200
+ duration: 54.818356ms
+ - id: 34
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 541
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:54:59.233490+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "541"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:55:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 6a83061a-29e4-422a-9ed8-b71672529563
+ status: 200 OK
+ code: 200
+ duration: 52.255147ms
+ - id: 35
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 541
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:54:59.233490+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "541"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:55:55 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 59f5d4fb-9cd9-4d03-ae64-ffe5a3956cfb
+ status: 200 OK
+ code: 200
+ duration: 59.508994ms
+ - id: 36
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 541
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:54:59.233490+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "541"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:56:00 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 74493284-1606-4872-83eb-48217b2fde98
+ status: 200 OK
+ code: 200
+ duration: 57.148964ms
+ - id: 37
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 541
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:54:59.233490+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "541"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:56:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 305c770b-16c4-4cf6-9b9a-acb67b4f22cf
+ status: 200 OK
+ code: 200
+ duration: 73.634155ms
+ - id: 38
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 541
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:54:59.233490+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "541"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:56:10 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 14b6ea31-4d7d-4e85-8f3f-8eb81935a0b3
+ status: 200 OK
+ code: 200
+ duration: 58.453376ms
+ - id: 39
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 538
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:56:15.265841+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "available", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "538"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:56:15 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 2436a79f-d8d5-4db8-84e2-b10e0f25cded
+ status: 200 OK
+ code: 200
+ duration: 40.881004ms
+ - id: 40
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 538
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:56:15.265841+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "available", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "538"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:56:15 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - eb789047-af30-48dd-91d3-a0a77fc2f8c2
+ status: 200 OK
+ code: 200
+ duration: 65.959799ms
+ - id: 41
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 106
+ host: api.scaleway.com
+ body: '{"bucket":"test-acc-action-instance-export-snap-wait-6334876314542282935","key":"exported-snapshot.qcow2"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233/export
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 422
+ body: '{"task": {"id": "d39d3d27-2d85-4776-b5b6-8761e7fb57b4", "description": "export_snapshot", "status": "pending", "href_from": "/snapshots/01a80b8a-193e-49d6-b491-07523127f233/export", "href_result": "https://s3.fr-par.scw.cloud/test-acc-action-instance-export-snap-wait-6334876314542282935/exported-snapshot.qcow2", "started_at": "2025-12-11T17:56:16.628872+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "422"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:56:16 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d39d3d27-2d85-4776-b5b6-8761e7fb57b4
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 4c235429-b4ab-480f-96b5-84b0f44a3e63
+ status: 202 Accepted
+ code: 202
+ duration: 1.092593463s
+ - id: 42
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 538
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:56:15.603734+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "538"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:56:16 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 2c335b9a-3ebc-40d6-bdc4-cdeecd3f4b2e
+ status: 200 OK
+ code: 200
+ duration: 42.272111ms
+ - id: 43
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 538
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:56:15.603734+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "538"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:56:21 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - c784b4ad-a85a-4092-9689-a4b104ed76de
+ status: 200 OK
+ code: 200
+ duration: 67.674839ms
+ - id: 44
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 538
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:56:15.603734+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "538"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:56:26 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - c456df16-902c-437a-a209-84e2a1c51310
+ status: 200 OK
+ code: 200
+ duration: 62.737378ms
+ - id: 45
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 538
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:56:15.603734+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "538"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:56:31 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 872224e6-09be-45e8-bac6-a97494379af1
+ status: 200 OK
+ code: 200
+ duration: 49.681127ms
+ - id: 46
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 538
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:56:15.603734+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "538"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:56:36 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 51f8e07a-54ba-4643-818d-2a62efca319b
+ status: 200 OK
+ code: 200
+ duration: 47.000465ms
+ - id: 47
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 538
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:56:15.603734+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "538"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:56:42 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 0c0a0ad9-8aaf-457f-998c-c2ad3c67f502
+ status: 200 OK
+ code: 200
+ duration: 48.867448ms
+ - id: 48
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 538
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:56:15.603734+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "538"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:56:47 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - ed21cd95-3bec-40da-a296-2cd6be495be9
+ status: 200 OK
+ code: 200
+ duration: 61.617173ms
+ - id: 49
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 538
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:56:15.603734+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "538"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:56:52 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 80e5fd2e-dd71-4a13-b5cd-412ab8582953
+ status: 200 OK
+ code: 200
+ duration: 132.331548ms
+ - id: 50
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 538
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:56:15.603734+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "538"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:56:57 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - f869cce3-cc22-4031-922d-3c6b1b52f9dc
+ status: 200 OK
+ code: 200
+ duration: 118.794696ms
+ - id: 51
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 538
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:56:15.603734+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "538"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:02 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - c21e4a27-10e1-4f1c-92e7-e92fc0c59555
+ status: 200 OK
+ code: 200
+ duration: 61.917447ms
+ - id: 52
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 538
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:57:04.484487+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "available", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "538"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 03672c6f-afda-43c6-9db5-6510f80803a4
+ status: 200 OK
+ code: 200
+ duration: 42.388605ms
+ - id: 53
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 538
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:57:04.484487+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "available", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "538"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 7befa1a2-f289-447f-ae38-f4441b6a3853
+ status: 200 OK
+ code: 200
+ duration: 43.160482ms
+ - id: 54
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 684cd453-d424-476b-a4a3-1506f7a8d947
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175707Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: -1
+ body: ""
+ headers:
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:57:07 GMT
+ X-Amz-Bucket-Region:
+ - fr-par
+ X-Amz-Id-2:
+ - txge1534cf5d88646caafca-00693b05f3
+ X-Amz-Request-Id:
+ - txge1534cf5d88646caafca-00693b05f3
+ status: 200 OK
+ code: 200
+ duration: 60.838677ms
+ - id: 55
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 3b3c3088-07f5-4cf4-906e-082241114fb5
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175707Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 17:57:07 GMT
+ X-Amz-Id-2:
+ - txgd60a0c6cb8bd458db1a1-00693b05f3
+ X-Amz-Request-Id:
+ - txgd60a0c6cb8bd458db1a1-00693b05f3
+ status: 200 OK
+ code: 200
+ duration: 48.036304ms
+ - id: 56
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ object-lock:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 5a872bec-395c-4fa3-92cc-7bb38cd72c53
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175707Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?object-lock=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 330
+ body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxgbbf60c7e7bc74c618f92-00693b05f3txgbbf60c7e7bc74c618f92-00693b05f3/test-acc-action-instance-export-snap-wait-6334876314542282935
+ headers:
+ Content-Length:
+ - "330"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:57:07 GMT
+ X-Amz-Id-2:
+ - txgbbf60c7e7bc74c618f92-00693b05f3
+ X-Amz-Request-Id:
+ - txgbbf60c7e7bc74c618f92-00693b05f3
+ status: 404 Not Found
+ code: 404
+ duration: 27.805963ms
+ - id: 57
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7cca016-6a77-4142-b477-6171a135cfe6
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2374
+ body: '{"server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-wait", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:56:15.265841+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:54:56.917938+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "804", "node_id": "34"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2374"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - d2daf9bb-21e9-4d47-820c-df55eecacfe2
+ status: 200 OK
+ code: 200
+ duration: 99.905113ms
+ - id: 58
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - fb24e132-5027-4832-accb-6822d942e88f
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175707Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 710
+ body: |-
+
+ test-acc-action-instance-export-snap-wait-63348763145422829351000falseexported-snapshot.qcow22025-12-11T17:57:03.000Z"4736dfb59c32b5fb904980999fe9a873-19"2467627008fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552STANDARD
+ headers:
+ Content-Length:
+ - "710"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:57:07 GMT
+ X-Amz-Id-2:
+ - txg8aef6a0227504ba787c5-00693b05f3
+ X-Amz-Request-Id:
+ - txg8aef6a0227504ba787c5-00693b05f3
+ status: 200 OK
+ code: 200
+ duration: 25.823647ms
+ - id: 59
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - d1122a7f-ad74-4cde-9b30-849ce1b8aeee
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175707Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 361
+ body: NoSuchTagSetThe TagSet does not existtxg1dc167e8bc7e4d9ca270-00693b05f3txg1dc167e8bc7e4d9ca270-00693b05f3/test-acc-action-instance-export-snap-wait-6334876314542282935test-acc-action-instance-export-snap-wait-6334876314542282935
+ headers:
+ Content-Length:
+ - "361"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:57:07 GMT
+ X-Amz-Id-2:
+ - txg1dc167e8bc7e4d9ca270-00693b05f3
+ X-Amz-Request-Id:
+ - txg1dc167e8bc7e4d9ca270-00693b05f3
+ status: 404 Not Found
+ code: 404
+ duration: 9.953122ms
+ - id: 60
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ cors:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 12027e2a-7d08-4545-b750-1c34602203d1
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175707Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?cors=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 298
+ body: NoSuchCORSConfigurationThe CORS configuration does not existtxg536063f4b38e432cab23-00693b05f3txg536063f4b38e432cab23-00693b05f3/test-acc-action-instance-export-snap-wait-6334876314542282935
+ headers:
+ Content-Length:
+ - "298"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:57:07 GMT
+ X-Amz-Id-2:
+ - txg536063f4b38e432cab23-00693b05f3
+ X-Amz-Request-Id:
+ - txg536063f4b38e432cab23-00693b05f3
+ status: 404 Not Found
+ code: 404
+ duration: 12.574416ms
+ - id: 61
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ versioning:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 80d3df2f-862a-4625-ad2e-d7c534376f0b
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175707Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?versioning=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 107
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "107"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 17:57:07 GMT
+ X-Amz-Id-2:
+ - txgc87151184f7e4e6283ef-00693b05f3
+ X-Amz-Request-Id:
+ - txgc87151184f7e4e6283ef-00693b05f3
+ status: 200 OK
+ code: 200
+ duration: 13.069795ms
+ - id: 62
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1b3e226a-e4bb-43c0-a3df-2760a7206dfa
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 528
+ body: '{"volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:56:15.265841+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "528"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 7d4688d4-348e-4431-a6fd-2d6afdca1e02
+ status: 200 OK
+ code: 200
+ duration: 56.43485ms
+ - id: 63
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ lifecycle:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - f18d79d8-60f8-4418-aa07-9b1579ab1f9d
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175707Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 394
+ body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg40b223e9a1594ba3b3ba-00693b05f3txg40b223e9a1594ba3b3ba-00693b05f3/test-acc-action-instance-export-snap-wait-6334876314542282935test-acc-action-instance-export-snap-wait-6334876314542282935
+ headers:
+ Content-Length:
+ - "394"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:57:07 GMT
+ X-Amz-Id-2:
+ - txg40b223e9a1594ba3b3ba-00693b05f3
+ X-Amz-Request-Id:
+ - txg40b223e9a1594ba3b3ba-00693b05f3
+ status: 404 Not Found
+ code: 404
+ duration: 52.343129ms
+ - id: 64
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7cca016-6a77-4142-b477-6171a135cfe6/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - a1baaec9-b9f7-44b1-aee6-d9d910c56318
+ status: 200 OK
+ code: 200
+ duration: 57.598421ms
+ - id: 65
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7cca016-6a77-4142-b477-6171a135cfe6/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:08 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - bb9722a2-6062-4889-80e4-8dd6e93c02b0
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 63.675186ms
+ - id: 66
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 538
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:57:04.484487+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "available", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "538"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 60dc6328-a9b1-4b95-9855-06172b338642
+ status: 200 OK
+ code: 200
+ duration: 56.172399ms
+ - id: 67
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 914803ab-cb9d-4dd2-b95e-41321e0c7e22
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175708Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 17:57:08 GMT
+ X-Amz-Id-2:
+ - txg00d4645f31e447e28687-00693b05f4
+ X-Amz-Request-Id:
+ - txg00d4645f31e447e28687-00693b05f4
+ status: 200 OK
+ code: 200
+ duration: 19.541158ms
+ - id: 68
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ object-lock:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 7253b463-fac5-45ec-a176-61d5739392da
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175708Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?object-lock=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 330
+ body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxgd627f1560fe242dea888-00693b05f4txgd627f1560fe242dea888-00693b05f4/test-acc-action-instance-export-snap-wait-6334876314542282935
+ headers:
+ Content-Length:
+ - "330"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:57:08 GMT
+ X-Amz-Id-2:
+ - txgd627f1560fe242dea888-00693b05f4
+ X-Amz-Request-Id:
+ - txgd627f1560fe242dea888-00693b05f4
+ status: 404 Not Found
+ code: 404
+ duration: 11.527523ms
+ - id: 69
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 538
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:57:04.484487+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "available", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "538"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 53355e90-0e9e-42a3-a978-64221f88fd7d
+ status: 200 OK
+ code: 200
+ duration: 48.823611ms
+ - id: 70
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - dac4e4ab-3d14-4242-89b5-7e84926f4c8d
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175708Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 710
+ body: |-
+
+ test-acc-action-instance-export-snap-wait-63348763145422829351000falseexported-snapshot.qcow22025-12-11T17:57:03.000Z"4736dfb59c32b5fb904980999fe9a873-19"2467627008fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552STANDARD
+ headers:
+ Content-Length:
+ - "710"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:57:08 GMT
+ X-Amz-Id-2:
+ - txg35759c26f0094c348239-00693b05f4
+ X-Amz-Request-Id:
+ - txg35759c26f0094c348239-00693b05f4
+ status: 200 OK
+ code: 200
+ duration: 20.673862ms
+ - id: 71
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - bcbdb58f-a7ba-4f49-82bc-d89f16839d3d
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175708Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 361
+ body: NoSuchTagSetThe TagSet does not existtxgecec90bc8de04e7cb364-00693b05f4txgecec90bc8de04e7cb364-00693b05f4/test-acc-action-instance-export-snap-wait-6334876314542282935test-acc-action-instance-export-snap-wait-6334876314542282935
+ headers:
+ Content-Length:
+ - "361"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:57:08 GMT
+ X-Amz-Id-2:
+ - txgecec90bc8de04e7cb364-00693b05f4
+ X-Amz-Request-Id:
+ - txgecec90bc8de04e7cb364-00693b05f4
+ status: 404 Not Found
+ code: 404
+ duration: 21.588546ms
+ - id: 72
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7cca016-6a77-4142-b477-6171a135cfe6
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2374
+ body: '{"server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-wait", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:56:15.265841+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:54:56.917938+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "804", "node_id": "34"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2374"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - d5f7e226-20c1-4828-ad67-5be6776e008d
+ status: 200 OK
+ code: 200
+ duration: 88.413839ms
+ - id: 73
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ cors:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - e27ad157-f88a-4a0c-9dc0-7c453607ab34
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175708Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?cors=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 298
+ body: NoSuchCORSConfigurationThe CORS configuration does not existtxg5242b16c478e469a9830-00693b05f4txg5242b16c478e469a9830-00693b05f4/test-acc-action-instance-export-snap-wait-6334876314542282935
+ headers:
+ Content-Length:
+ - "298"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:57:08 GMT
+ X-Amz-Id-2:
+ - txg5242b16c478e469a9830-00693b05f4
+ X-Amz-Request-Id:
+ - txg5242b16c478e469a9830-00693b05f4
+ status: 404 Not Found
+ code: 404
+ duration: 10.756197ms
+ - id: 74
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ versioning:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 9c65fbb1-0b80-4fdc-a6fd-8947a47713a4
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175708Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?versioning=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 107
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "107"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 17:57:08 GMT
+ X-Amz-Id-2:
+ - txg2a4f192edcbf46bfa712-00693b05f4
+ X-Amz-Request-Id:
+ - txg2a4f192edcbf46bfa712-00693b05f4
+ status: 200 OK
+ code: 200
+ duration: 12.709059ms
+ - id: 75
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ lifecycle:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 6f173e34-2f66-4347-8280-a195c4a92c48
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175708Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 394
+ body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg27c385bdba5e4bafa805-00693b05f4txg27c385bdba5e4bafa805-00693b05f4/test-acc-action-instance-export-snap-wait-6334876314542282935test-acc-action-instance-export-snap-wait-6334876314542282935
+ headers:
+ Content-Length:
+ - "394"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:57:08 GMT
+ X-Amz-Id-2:
+ - txg27c385bdba5e4bafa805-00693b05f4
+ X-Amz-Request-Id:
+ - txg27c385bdba5e4bafa805-00693b05f4
+ status: 404 Not Found
+ code: 404
+ duration: 32.562131ms
+ - id: 76
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1b3e226a-e4bb-43c0-a3df-2760a7206dfa
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 528
+ body: '{"volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:56:15.265841+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "528"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - df98aafd-4e73-427b-90ec-750acf736630
+ status: 200 OK
+ code: 200
+ duration: 61.802896ms
+ - id: 77
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 5f9a7d99-f853-4f19-8fab-5dcdb5e3dcad
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175708Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/exported-snapshot.qcow2
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2467627008
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "2467627008"
+ Content-Type:
+ - application/x-qemu-disk
+ Date:
+ - Thu, 11 Dec 2025 17:57:08 GMT
+ Etag:
+ - '"4736dfb59c32b5fb904980999fe9a873-19"'
+ Last-Modified:
+ - Thu, 11 Dec 2025 17:57:03 GMT
+ X-Amz-Id-2:
+ - txgbd99ed450b0f4a9791e9-00693b05f4
+ X-Amz-Request-Id:
+ - txgbd99ed450b0f4a9791e9-00693b05f4
+ status: 200 OK
+ code: 200
+ duration: 10.882374ms
+ - id: 78
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 40505b8b-c4d1-4fd2-af59-e8fcd4fad403
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175708Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/exported-snapshot.qcow2
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2467627008
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "2467627008"
+ Content-Type:
+ - application/x-qemu-disk
+ Date:
+ - Thu, 11 Dec 2025 17:57:08 GMT
+ Etag:
+ - '"4736dfb59c32b5fb904980999fe9a873-19"'
+ Last-Modified:
+ - Thu, 11 Dec 2025 17:57:03 GMT
+ X-Amz-Id-2:
+ - txga32ee3d24a264df2984f-00693b05f4
+ X-Amz-Request-Id:
+ - txga32ee3d24a264df2984f-00693b05f4
+ status: 200 OK
+ code: 200
+ duration: 6.81122ms
+ - id: 79
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 5ac1bbe1-6f45-4218-8ecd-5f15e674faff
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175708Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/exported-snapshot.qcow2?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 75
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "75"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 17:57:08 GMT
+ X-Amz-Id-2:
+ - txg198367c0df544a9fa70b-00693b05f4
+ X-Amz-Request-Id:
+ - txg198367c0df544a9fa70b-00693b05f4
+ status: 200 OK
+ code: 200
+ duration: 6.845415ms
+ - id: 80
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 8ce45c8f-ac0b-469f-b015-1b16d771a2e4
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175708Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/exported-snapshot.qcow2?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 17:57:08 GMT
+ X-Amz-Id-2:
+ - txg56c52a79b2ea42a5b57f-00693b05f4
+ X-Amz-Request-Id:
+ - txg56c52a79b2ea42a5b57f-00693b05f4
+ status: 200 OK
+ code: 200
+ duration: 12.717865ms
+ - id: 81
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7cca016-6a77-4142-b477-6171a135cfe6/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 33fefad2-6665-47ee-9bb8-200330ad435c
+ status: 200 OK
+ code: 200
+ duration: 78.903117ms
+ - id: 82
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7cca016-6a77-4142-b477-6171a135cfe6/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:08 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 7fa8dc24-f3f6-4925-85bc-16e409f48bc2
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 54.155357ms
+ - id: 83
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 538
+ body: '{"snapshot": {"id": "01a80b8a-193e-49d6-b491-07523127f233", "name": "tf-snap-stoic-cartwright", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:54:59.233490+00:00", "modification_date": "2025-12-11T17:57:04.484487+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "available", "base_volume": {"id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "538"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - befdfec5-1c7b-4cad-87cd-4b066efdee88
+ status: 200 OK
+ code: 200
+ duration: 59.80532ms
+ - id: 84
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 0f005695-9eeb-4651-a455-650bbf763412
+ status: 204 No Content
+ code: 204
+ duration: 132.794449ms
+ - id: 85
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/01a80b8a-193e-49d6-b491-07523127f233
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 145
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_snapshot", "resource_id": "01a80b8a-193e-49d6-b491-07523127f233"}'
+ headers:
+ Content-Length:
+ - "145"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 4bd30c3c-3dc8-42ef-a6f9-4e5ad634f6f7
+ status: 404 Not Found
+ code: 404
+ duration: 27.582455ms
+ - id: 86
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7cca016-6a77-4142-b477-6171a135cfe6
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2374
+ body: '{"server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-wait", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:56:15.265841+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:54:56.917938+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "804", "node_id": "34"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2374"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 858eaddf-da77-41d4-9ae1-32729bc22f6d
+ status: 200 OK
+ code: 200
+ duration: 86.549463ms
+ - id: 87
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7cca016-6a77-4142-b477-6171a135cfe6
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2374
+ body: '{"server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-wait", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:56:15.265841+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:54:56.917938+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "804", "node_id": "34"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2374"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:09 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 74b73a36-515c-4b28-9c8e-fbff8742edfd
+ status: 200 OK
+ code: 200
+ duration: 76.218023ms
+ - id: 88
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 22
+ host: api.scaleway.com
+ body: '{"action":"terminate"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7cca016-6a77-4142-b477-6171a135cfe6/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 353
+ body: '{"task": {"id": "fa93701e-9d12-4cdc-9126-0cd08770ff1d", "description": "server_terminate", "status": "pending", "href_from": "/servers/d7cca016-6a77-4142-b477-6171a135cfe6/action", "href_result": "/servers/d7cca016-6a77-4142-b477-6171a135cfe6", "started_at": "2025-12-11T17:57:09.204545+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "353"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:09 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fa93701e-9d12-4cdc-9126-0cd08770ff1d
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 7c96391e-ca79-4305-add6-7cf55c278b0d
+ status: 202 Accepted
+ code: 202
+ duration: 201.973046ms
+ - id: 89
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7cca016-6a77-4142-b477-6171a135cfe6
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2337
+ body: '{"server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-wait", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:56:15.265841+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:57:09.078482+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "804", "node_id": "34"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2337"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:09 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - a0ad1f1f-4d6b-44e3-a4b5-ecf3c5381652
+ status: 200 OK
+ code: 200
+ duration: 95.424664ms
+ - id: 90
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 206
+ host: api.scaleway.com
+ body: '{"name":"tf-snap-zen-mcnulty","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","volume_type":"l_ssd","bucket":"test-acc-action-instance-export-snap-wait-6334876314542282935","key":"exported-snapshot.qcow2"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 762
+ body: '{"snapshot": {"id": "0e92f175-3524-433f-b67b-bc9b46268bb1", "name": "tf-snap-zen-mcnulty", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:57:09.461788+00:00", "modification_date": "2025-12-11T17:57:09.461788+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "importing", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}, "task": {"id": "19d0d3b3-e758-4e3e-84b4-25bbaef13a6f", "description": "import_snapshot", "status": "pending", "href_from": "/snapshots", "href_result": "snapshots/0e92f175-3524-433f-b67b-bc9b46268bb1", "started_at": "2025-12-11T17:57:09.587886+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "762"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:09 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 7f08a153-9a79-4162-af9a-c9d36f865075
+ status: 201 Created
+ code: 201
+ duration: 973.345162ms
+ - id: 91
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0e92f175-3524-433f-b67b-bc9b46268bb1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 451
+ body: '{"snapshot": {"id": "0e92f175-3524-433f-b67b-bc9b46268bb1", "name": "tf-snap-zen-mcnulty", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:57:09.461788+00:00", "modification_date": "2025-12-11T17:57:09.461788+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "importing", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "451"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:09 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 645939ee-0d7d-489f-925d-7a4a9345d310
+ status: 200 OK
+ code: 200
+ duration: 51.21255ms
+ - id: 92
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7cca016-6a77-4142-b477-6171a135cfe6
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2337
+ body: '{"server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-wait", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:56:15.265841+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:57:09.078482+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "804", "node_id": "34"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2337"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:14 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 9ce9ae1e-7b4b-475b-a0bd-59a9876fa107
+ status: 200 OK
+ code: 200
+ duration: 92.259314ms
+ - id: 93
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0e92f175-3524-433f-b67b-bc9b46268bb1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 451
+ body: '{"snapshot": {"id": "0e92f175-3524-433f-b67b-bc9b46268bb1", "name": "tf-snap-zen-mcnulty", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:57:09.461788+00:00", "modification_date": "2025-12-11T17:57:09.461788+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "importing", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "451"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:14 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 2ae8d557-0b36-4995-a359-4aaf22dcdde5
+ status: 200 OK
+ code: 200
+ duration: 43.753797ms
+ - id: 94
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7cca016-6a77-4142-b477-6171a135cfe6
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2337
+ body: '{"server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-wait", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d7cca016-6a77-4142-b477-6171a135cfe6", "name": "test-tf-action-instance-export-snapshot-wait"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:56:15.265841+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:53", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:54:47.983165+00:00", "modification_date": "2025-12-11T17:57:09.078482+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "804", "node_id": "34"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2337"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:19 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 3d77c239-3e55-4c62-be0e-a52dbad22569
+ status: 200 OK
+ code: 200
+ duration: 69.93498ms
+ - id: 95
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0e92f175-3524-433f-b67b-bc9b46268bb1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 451
+ body: '{"snapshot": {"id": "0e92f175-3524-433f-b67b-bc9b46268bb1", "name": "tf-snap-zen-mcnulty", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:57:09.461788+00:00", "modification_date": "2025-12-11T17:57:09.461788+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "importing", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "451"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:19 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 3de27637-71df-4580-b026-5e6c4543d7ee
+ status: 200 OK
+ code: 200
+ duration: 43.928117ms
+ - id: 96
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7cca016-6a77-4142-b477-6171a135cfe6
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "d7cca016-6a77-4142-b477-6171a135cfe6"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:24 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - e4881fc1-2db5-4e9a-8e42-72e26215c4b1
+ status: 404 Not Found
+ code: 404
+ duration: 54.011506ms
+ - id: 97
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1b3e226a-e4bb-43c0-a3df-2760a7206dfa
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "1b3e226a-e4bb-43c0-a3df-2760a7206dfa"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:24 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 12d789ad-2d1f-4bfd-970f-2b22548797b7
+ status: 404 Not Found
+ code: 404
+ duration: 29.434062ms
+ - id: 98
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1b3e226a-e4bb-43c0-a3df-2760a7206dfa
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 127
+ body: '{"message":"resource is not found","resource":"volume","resource_id":"1b3e226a-e4bb-43c0-a3df-2760a7206dfa","type":"not_found"}'
+ headers:
+ Content-Length:
+ - "127"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:24 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - d3eaba1d-5b4f-4c72-92dc-77c67675200c
+ status: 404 Not Found
+ code: 404
+ duration: 22.661563ms
+ - id: 99
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0e92f175-3524-433f-b67b-bc9b46268bb1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 451
+ body: '{"snapshot": {"id": "0e92f175-3524-433f-b67b-bc9b46268bb1", "name": "tf-snap-zen-mcnulty", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:57:09.461788+00:00", "modification_date": "2025-12-11T17:57:09.461788+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "importing", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "451"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:24 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 98cf10d1-4691-4122-bd6c-3674f83d5d4a
+ status: 200 OK
+ code: 200
+ duration: 71.558649ms
+ - id: 100
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0e92f175-3524-433f-b67b-bc9b46268bb1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 451
+ body: '{"snapshot": {"id": "0e92f175-3524-433f-b67b-bc9b46268bb1", "name": "tf-snap-zen-mcnulty", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:57:09.461788+00:00", "modification_date": "2025-12-11T17:57:09.461788+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "importing", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "451"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:29 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 8c13223c-f582-4206-afb6-6992dcaa3c94
+ status: 200 OK
+ code: 200
+ duration: 45.415591ms
+ - id: 101
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0e92f175-3524-433f-b67b-bc9b46268bb1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 451
+ body: '{"snapshot": {"id": "0e92f175-3524-433f-b67b-bc9b46268bb1", "name": "tf-snap-zen-mcnulty", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:57:09.461788+00:00", "modification_date": "2025-12-11T17:57:09.461788+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "importing", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "451"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:34 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 7d42b69d-ee79-4db4-b6d0-ce6907c8a707
+ status: 200 OK
+ code: 200
+ duration: 58.787418ms
+ - id: 102
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0e92f175-3524-433f-b67b-bc9b46268bb1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 451
+ body: '{"snapshot": {"id": "0e92f175-3524-433f-b67b-bc9b46268bb1", "name": "tf-snap-zen-mcnulty", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:57:09.461788+00:00", "modification_date": "2025-12-11T17:57:09.461788+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "importing", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "451"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:39 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - d0ee32a0-5d6d-455d-894a-5f97af574250
+ status: 200 OK
+ code: 200
+ duration: 41.291162ms
+ - id: 103
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0e92f175-3524-433f-b67b-bc9b46268bb1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 451
+ body: '{"snapshot": {"id": "0e92f175-3524-433f-b67b-bc9b46268bb1", "name": "tf-snap-zen-mcnulty", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:57:09.461788+00:00", "modification_date": "2025-12-11T17:57:09.461788+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "importing", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "451"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:45 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 9f4c71e7-585e-4f8b-99f4-d4c7441a0ec5
+ status: 200 OK
+ code: 200
+ duration: 37.60977ms
+ - id: 104
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0e92f175-3524-433f-b67b-bc9b46268bb1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 451
+ body: '{"snapshot": {"id": "0e92f175-3524-433f-b67b-bc9b46268bb1", "name": "tf-snap-zen-mcnulty", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:57:09.461788+00:00", "modification_date": "2025-12-11T17:57:48.024184+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "available", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "451"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - b2d11279-e701-4af4-884a-9ba37d093687
+ status: 200 OK
+ code: 200
+ duration: 40.322118ms
+ - id: 105
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0e92f175-3524-433f-b67b-bc9b46268bb1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 451
+ body: '{"snapshot": {"id": "0e92f175-3524-433f-b67b-bc9b46268bb1", "name": "tf-snap-zen-mcnulty", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:57:09.461788+00:00", "modification_date": "2025-12-11T17:57:48.024184+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "available", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "451"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - da7d2b0c-0c11-4f35-a62f-50bd0017fe73
+ status: 200 OK
+ code: 200
+ duration: 41.033943ms
+ - id: 106
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 160
+ host: api.scaleway.com
+ body: '{"name":"tf-vol-inspiring-agnesi","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","volume_type":"l_ssd","base_snapshot":"0e92f175-3524-433f-b67b-bc9b46268bb1"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 425
+ body: '{"volume": {"id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3", "name": "tf-vol-inspiring-agnesi", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": null, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:57:50.222505+00:00", "modification_date": "2025-12-11T17:57:50.222505+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "425"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:50 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/226a36fb-fe15-434f-84b4-a2fb41b8f6f3
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - b399ebec-2f48-4d78-976f-a916dde11c3f
+ status: 201 Created
+ code: 201
+ duration: 251.767124ms
+ - id: 107
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/226a36fb-fe15-434f-84b4-a2fb41b8f6f3
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 425
+ body: '{"volume": {"id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3", "name": "tf-vol-inspiring-agnesi", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": null, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:57:50.222505+00:00", "modification_date": "2025-12-11T17:57:50.222505+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "425"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 1f2426ab-9f29-405e-ae5b-ff124e0140a8
+ status: 200 OK
+ code: 200
+ duration: 36.033867ms
+ - id: 108
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/226a36fb-fe15-434f-84b4-a2fb41b8f6f3
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 425
+ body: '{"volume": {"id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3", "name": "tf-vol-inspiring-agnesi", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": null, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:57:50.222505+00:00", "modification_date": "2025-12-11T17:57:50.222505+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "425"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 7e4fa695-40be-48c3-96fe-a1c29c42f482
+ status: 200 OK
+ code: 200
+ duration: 65.689742ms
+ - id: 109
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ page:
+ - "1"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 39202
+ body: '{"servers": {"BASIC2-A16C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.89, "hourly_price": 0.2067, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 201.19, "hourly_price": 0.2756, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A2C-4G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 16.79, "hourly_price": 0.023, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 25.19, "hourly_price": 0.0345, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 50.3, "hourly_price": 0.0689, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A4C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 37.74, "hourly_price": 0.0517, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A8C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.48, "hourly_price": 0.1034, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "BASIC2-A8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 100.59, "hourly_price": 0.1378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 30.66, "hourly_price": 0.042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.454, "hourly_price": 0.0198, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.424, "hourly_price": 0.0088, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 46.5734, "hourly_price": 0.06378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 554.07, "hourly_price": 0.759, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 274.48, "hourly_price": 0.376, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 136.51, "hourly_price": 0.187, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1197.93, "hourly_price": 1.641, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 66.43, "hourly_price": 0.091, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}}}'
+ headers:
+ Content-Length:
+ - "39202"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:50 GMT
+ Link:
+ - ; rel="next",; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 86696aa7-15be-4b8a-a8db-376fb29f9ac0
+ X-Total-Count:
+ - "76"
+ status: 200 OK
+ code: 200
+ duration: 50.628526ms
+ - id: 110
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ page:
+ - "2"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20510
+ body: '{"servers": {"POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 891.33, "hourly_price": 1.221, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 0.1095, "hourly_price": 0.00015, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}'
+ headers:
+ Content-Length:
+ - "20510"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:50 GMT
+ Link:
+ - ; rel="first",; rel="previous",; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 833a9c09-97f9-471b-a0b7-cad4cd2f96ba
+ X-Total-Count:
+ - "76"
+ status: 200 OK
+ code: 200
+ duration: 66.477419ms
+ - id: 111
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 285
+ host: api.scaleway.com
+ body: '{"name":"test-tf-action-instance-export-snapshot-new","dynamic_ip_required":false,"commercial_type":"DEV1-S","volumes":{"0":{"id":"226a36fb-fe15-434f-84b4-a2fb41b8f6f3","boot":false,"name":"tf-vol-cranky-poincare"}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1607
+ body: '{"server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-new", "image": null, "volumes": {"0": {"boot": false, "id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3", "name": "tf-vol-inspiring-agnesi", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:57:50.222505+00:00", "modification_date": "2025-12-11T17:57:50.730334+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:57:50.730334+00:00", "modification_date": "2025-12-11T17:57:50.730334+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1607"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:50 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 28bb0789-d2b1-4dc1-9510-d007694f9080
+ status: 201 Created
+ code: 201
+ duration: 232.214275ms
+ - id: 112
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1607
+ body: '{"server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-new", "image": null, "volumes": {"0": {"boot": false, "id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3", "name": "tf-vol-inspiring-agnesi", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:57:50.222505+00:00", "modification_date": "2025-12-11T17:57:50.730334+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:57:50.730334+00:00", "modification_date": "2025-12-11T17:57:50.730334+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1607"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - dc7d877f-6be7-42e6-bcf1-ab0a40cbebca
+ status: 200 OK
+ code: 200
+ duration: 91.441084ms
+ - id: 113
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1607
+ body: '{"server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-new", "image": null, "volumes": {"0": {"boot": false, "id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3", "name": "tf-vol-inspiring-agnesi", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:57:50.222505+00:00", "modification_date": "2025-12-11T17:57:50.730334+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:57:50.730334+00:00", "modification_date": "2025-12-11T17:57:50.730334+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1607"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:51 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 2e75f808-a4f7-403c-87d3-9853c2042f8a
+ status: 200 OK
+ code: 200
+ duration: 104.609641ms
+ - id: 114
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 20
+ host: api.scaleway.com
+ body: '{"action":"poweron"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 357
+ body: '{"task": {"id": "4f0ec2ef-1a20-4347-88f9-81748c37807d", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21/action", "href_result": "/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21", "started_at": "2025-12-11T17:57:51.213310+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "357"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:51 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4f0ec2ef-1a20-4347-88f9-81748c37807d
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 9628393b-0620-4e46-8945-e6b34c9afe55
+ status: 202 Accepted
+ code: 202
+ duration: 200.642769ms
+ - id: 115
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1629
+ body: '{"server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-new", "image": null, "volumes": {"0": {"boot": false, "id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3", "name": "tf-vol-inspiring-agnesi", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:57:50.222505+00:00", "modification_date": "2025-12-11T17:57:50.730334+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:57:50.730334+00:00", "modification_date": "2025-12-11T17:57:51.074715+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1629"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:51 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 8ab6c850-b66c-4c41-a5bd-fd15caa8e8f0
+ status: 200 OK
+ code: 200
+ duration: 81.797811ms
+ - id: 116
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1732
+ body: '{"server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-new", "image": null, "volumes": {"0": {"boot": false, "id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3", "name": "tf-vol-inspiring-agnesi", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:57:50.222505+00:00", "modification_date": "2025-12-11T17:57:50.730334+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:57:50.730334+00:00", "modification_date": "2025-12-11T17:57:51.074715+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "702", "node_id": "25"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1732"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:57:56 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - cd847deb-4c5b-400e-83ed-0a8e45a00a95
+ status: 200 OK
+ code: 200
+ duration: 83.226214ms
+ - id: 117
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1732
+ body: '{"server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-new", "image": null, "volumes": {"0": {"boot": false, "id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3", "name": "tf-vol-inspiring-agnesi", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:57:50.222505+00:00", "modification_date": "2025-12-11T17:57:50.730334+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:57:50.730334+00:00", "modification_date": "2025-12-11T17:57:51.074715+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "702", "node_id": "25"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1732"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:01 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 82f919fd-7757-4e61-b5d5-4e2191c48182
+ status: 200 OK
+ code: 200
+ duration: 72.591683ms
+ - id: 118
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1763
+ body: '{"server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-new", "image": null, "volumes": {"0": {"boot": false, "id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3", "name": "tf-vol-inspiring-agnesi", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:57:50.222505+00:00", "modification_date": "2025-12-11T17:57:50.730334+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:57:50.730334+00:00", "modification_date": "2025-12-11T17:58:05.800113+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "702", "node_id": "25"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1763"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:06 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - e12e764e-b491-48ad-aa44-4e6537dc1efc
+ status: 200 OK
+ code: 200
+ duration: 80.541547ms
+ - id: 119
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1763
+ body: '{"server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-new", "image": null, "volumes": {"0": {"boot": false, "id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3", "name": "tf-vol-inspiring-agnesi", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:57:50.222505+00:00", "modification_date": "2025-12-11T17:57:50.730334+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:57:50.730334+00:00", "modification_date": "2025-12-11T17:58:05.800113+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "702", "node_id": "25"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1763"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:06 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 89217d8c-7129-438f-bcd6-eb29af61a303
+ status: 200 OK
+ code: 200
+ duration: 68.755913ms
+ - id: 120
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/226a36fb-fe15-434f-84b4-a2fb41b8f6f3
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 522
+ body: '{"volume": {"id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3", "name": "tf-vol-inspiring-agnesi", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:57:50.222505+00:00", "modification_date": "2025-12-11T17:57:50.730334+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "522"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:06 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 16661040-ec5f-46ae-8229-82596a6ce693
+ status: 200 OK
+ code: 200
+ duration: 57.757986ms
+ - id: 121
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 1431e572-962c-44f6-8850-7a9c6d063af9
+ status: 200 OK
+ code: 200
+ duration: 335.534871ms
+ - id: 122
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:07 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - af0cf373-02d2-413e-bc1d-5b6fad75a52c
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 45.392135ms
+ - id: 123
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0e92f175-3524-433f-b67b-bc9b46268bb1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 451
+ body: '{"snapshot": {"id": "0e92f175-3524-433f-b67b-bc9b46268bb1", "name": "tf-snap-zen-mcnulty", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:57:09.461788+00:00", "modification_date": "2025-12-11T17:57:48.024184+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "available", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "451"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - c1ec6f7f-9e18-42ee-bf8d-86c8bd124d5a
+ status: 200 OK
+ code: 200
+ duration: 41.777164ms
+ - id: 124
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/226a36fb-fe15-434f-84b4-a2fb41b8f6f3
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 522
+ body: '{"volume": {"id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3", "name": "tf-vol-inspiring-agnesi", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:57:50.222505+00:00", "modification_date": "2025-12-11T17:57:50.730334+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "522"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 2ffbbdc5-b68a-46f5-9828-f474d601818d
+ status: 200 OK
+ code: 200
+ duration: 55.887808ms
+ - id: 125
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1763
+ body: '{"server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-new", "image": null, "volumes": {"0": {"boot": false, "id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3", "name": "tf-vol-inspiring-agnesi", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:57:50.222505+00:00", "modification_date": "2025-12-11T17:57:50.730334+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:57:50.730334+00:00", "modification_date": "2025-12-11T17:58:05.800113+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "702", "node_id": "25"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1763"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 87de41f0-941f-4b36-b2e0-cd396bc24d52
+ status: 200 OK
+ code: 200
+ duration: 97.195693ms
+ - id: 126
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1763
+ body: '{"server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-new", "image": null, "volumes": {"0": {"boot": false, "id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3", "name": "tf-vol-inspiring-agnesi", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:57:50.222505+00:00", "modification_date": "2025-12-11T17:57:50.730334+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:57:50.730334+00:00", "modification_date": "2025-12-11T17:58:05.800113+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "702", "node_id": "25"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1763"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 969ca410-1ccd-4e54-9dfd-597f4979fbd9
+ status: 200 OK
+ code: 200
+ duration: 79.206413ms
+ - id: 127
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 0fb3f685-0038-4739-82ff-e7124366d9ab
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175807Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/exported-snapshot.qcow2
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2467627008
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "2467627008"
+ Content-Type:
+ - application/x-qemu-disk
+ Date:
+ - Thu, 11 Dec 2025 17:58:07 GMT
+ Etag:
+ - '"4736dfb59c32b5fb904980999fe9a873-19"'
+ Last-Modified:
+ - Thu, 11 Dec 2025 17:57:03 GMT
+ X-Amz-Id-2:
+ - txg454bb495cc8c4cf089b1-00693b062f
+ X-Amz-Request-Id:
+ - txg454bb495cc8c4cf089b1-00693b062f
+ status: 200 OK
+ code: 200
+ duration: 141.203992ms
+ - id: 128
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - f4b1fcb5-2b77-4d64-8e0e-fdc1da4109a5
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175807Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/exported-snapshot.qcow2
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2467627008
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "2467627008"
+ Content-Type:
+ - application/x-qemu-disk
+ Date:
+ - Thu, 11 Dec 2025 17:58:07 GMT
+ Etag:
+ - '"4736dfb59c32b5fb904980999fe9a873-19"'
+ Last-Modified:
+ - Thu, 11 Dec 2025 17:57:03 GMT
+ X-Amz-Id-2:
+ - txg2659fa9a866e41b2adae-00693b062f
+ X-Amz-Request-Id:
+ - txg2659fa9a866e41b2adae-00693b062f
+ status: 200 OK
+ code: 200
+ duration: 54.365835ms
+ - id: 129
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 36c84fb3-b758-477c-90ed-1835853a4447
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175807Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/exported-snapshot.qcow2?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 75
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "75"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 17:58:07 GMT
+ X-Amz-Id-2:
+ - txg85d5c9de906f41938d73-00693b062f
+ X-Amz-Request-Id:
+ - txg85d5c9de906f41938d73-00693b062f
+ status: 200 OK
+ code: 200
+ duration: 19.258911ms
+ - id: 130
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 46bf0b58-2f75-4c0f-9677-7444fed17fc1
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175807Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/exported-snapshot.qcow2?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 17:58:07 GMT
+ X-Amz-Id-2:
+ - txgeb3820ac6a7b45f2ae47-00693b062f
+ X-Amz-Request-Id:
+ - txgeb3820ac6a7b45f2ae47-00693b062f
+ status: 200 OK
+ code: 200
+ duration: 20.222528ms
+ - id: 131
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 1410a96e-87aa-4225-a815-679cd8ce5b36
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175807Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 17:58:07 GMT
+ X-Amz-Id-2:
+ - txgdc6ed0127e06431da6eb-00693b062f
+ X-Amz-Request-Id:
+ - txgdc6ed0127e06431da6eb-00693b062f
+ status: 200 OK
+ code: 200
+ duration: 32.102599ms
+ - id: 132
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ object-lock:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 4e3f2723-6a45-42ea-ad90-7112ffe0bdf8
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175807Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?object-lock=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 330
+ body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg6e0d696bb3154d8f801d-00693b062ftxg6e0d696bb3154d8f801d-00693b062f/test-acc-action-instance-export-snap-wait-6334876314542282935
+ headers:
+ Content-Length:
+ - "330"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:58:07 GMT
+ X-Amz-Id-2:
+ - txg6e0d696bb3154d8f801d-00693b062f
+ X-Amz-Request-Id:
+ - txg6e0d696bb3154d8f801d-00693b062f
+ status: 404 Not Found
+ code: 404
+ duration: 21.617735ms
+ - id: 133
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 018930dd-29fd-4083-bd61-4606ba189eff
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175807Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 710
+ body: |-
+
+ test-acc-action-instance-export-snap-wait-63348763145422829351000falseexported-snapshot.qcow22025-12-11T17:57:03.000Z"4736dfb59c32b5fb904980999fe9a873-19"2467627008fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552STANDARD
+ headers:
+ Content-Length:
+ - "710"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:58:07 GMT
+ X-Amz-Id-2:
+ - txg3a1401fff5a144e5ac33-00693b062f
+ X-Amz-Request-Id:
+ - txg3a1401fff5a144e5ac33-00693b062f
+ status: 200 OK
+ code: 200
+ duration: 31.852781ms
+ - id: 134
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 0ff02c95-7eb5-48cd-ab0d-2ede9822079b
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175807Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 361
+ body: NoSuchTagSetThe TagSet does not existtxg48f095d01dc94b16bf0a-00693b062ftxg48f095d01dc94b16bf0a-00693b062f/test-acc-action-instance-export-snap-wait-6334876314542282935test-acc-action-instance-export-snap-wait-6334876314542282935
+ headers:
+ Content-Length:
+ - "361"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:58:07 GMT
+ X-Amz-Id-2:
+ - txg48f095d01dc94b16bf0a-00693b062f
+ X-Amz-Request-Id:
+ - txg48f095d01dc94b16bf0a-00693b062f
+ status: 404 Not Found
+ code: 404
+ duration: 8.644933ms
+ - id: 135
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ cors:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - bf9aa415-b47a-4fd6-bce3-cef8549d490c
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175807Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?cors=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 298
+ body: NoSuchCORSConfigurationThe CORS configuration does not existtxg1b9ff714796942b0accb-00693b062ftxg1b9ff714796942b0accb-00693b062f/test-acc-action-instance-export-snap-wait-6334876314542282935
+ headers:
+ Content-Length:
+ - "298"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:58:07 GMT
+ X-Amz-Id-2:
+ - txg1b9ff714796942b0accb-00693b062f
+ X-Amz-Request-Id:
+ - txg1b9ff714796942b0accb-00693b062f
+ status: 404 Not Found
+ code: 404
+ duration: 10.176066ms
+ - id: 136
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ versioning:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - bca1fa1b-c976-49a5-addd-c8067c0114d0
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175807Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?versioning=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 107
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "107"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 17:58:07 GMT
+ X-Amz-Id-2:
+ - txgbed3a565ef7b4ff188d7-00693b062f
+ X-Amz-Request-Id:
+ - txgbed3a565ef7b4ff188d7-00693b062f
+ status: 200 OK
+ code: 200
+ duration: 13.672934ms
+ - id: 137
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ lifecycle:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 4d9f7874-3f10-4c5d-bf6e-bbb26732e72f
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175807Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 394
+ body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxgd05676bc6da447cfa0bf-00693b062ftxgd05676bc6da447cfa0bf-00693b062f/test-acc-action-instance-export-snap-wait-6334876314542282935test-acc-action-instance-export-snap-wait-6334876314542282935
+ headers:
+ Content-Length:
+ - "394"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:58:07 GMT
+ X-Amz-Id-2:
+ - txgd05676bc6da447cfa0bf-00693b062f
+ X-Amz-Request-Id:
+ - txgd05676bc6da447cfa0bf-00693b062f
+ status: 404 Not Found
+ code: 404
+ duration: 8.670471ms
+ - id: 138
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 276dc09b-b42f-41b4-827a-5024bdabc0f6
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175808Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/exported-snapshot.qcow2
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2467627008
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "2467627008"
+ Content-Type:
+ - application/x-qemu-disk
+ Date:
+ - Thu, 11 Dec 2025 17:58:08 GMT
+ Etag:
+ - '"4736dfb59c32b5fb904980999fe9a873-19"'
+ Last-Modified:
+ - Thu, 11 Dec 2025 17:57:03 GMT
+ X-Amz-Id-2:
+ - txg1e4ed2feebeb48ff9e4b-00693b0630
+ X-Amz-Request-Id:
+ - txg1e4ed2feebeb48ff9e4b-00693b0630
+ status: 200 OK
+ code: 200
+ duration: 23.522027ms
+ - id: 139
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 9c76c647-3195-4f54-ac3d-aa6576693a1e
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175808Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/exported-snapshot.qcow2
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2467627008
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "2467627008"
+ Content-Type:
+ - application/x-qemu-disk
+ Date:
+ - Thu, 11 Dec 2025 17:58:08 GMT
+ Etag:
+ - '"4736dfb59c32b5fb904980999fe9a873-19"'
+ Last-Modified:
+ - Thu, 11 Dec 2025 17:57:03 GMT
+ X-Amz-Id-2:
+ - txg0bc4ce19965545778263-00693b0630
+ X-Amz-Request-Id:
+ - txg0bc4ce19965545778263-00693b0630
+ status: 200 OK
+ code: 200
+ duration: 14.906638ms
+ - id: 140
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0e92f175-3524-433f-b67b-bc9b46268bb1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 451
+ body: '{"snapshot": {"id": "0e92f175-3524-433f-b67b-bc9b46268bb1", "name": "tf-snap-zen-mcnulty", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:57:09.461788+00:00", "modification_date": "2025-12-11T17:57:48.024184+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "available", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "451"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - a01e7c16-ced0-4bcf-94e7-292c46eedff6
+ status: 200 OK
+ code: 200
+ duration: 41.457354ms
+ - id: 141
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - ff4ce967-63a6-474c-b3d1-615ecca01d9d
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175808Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/exported-snapshot.qcow2?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 75
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "75"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 17:58:08 GMT
+ X-Amz-Id-2:
+ - txgdb6c81d66d1648eebd2f-00693b0630
+ X-Amz-Request-Id:
+ - txgdb6c81d66d1648eebd2f-00693b0630
+ status: 200 OK
+ code: 200
+ duration: 14.580877ms
+ - id: 142
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - b031b1c1-5eb1-4906-a6f8-c013b26cc043
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175808Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/exported-snapshot.qcow2?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 17:58:08 GMT
+ X-Amz-Id-2:
+ - txg602da0f574264e4587ce-00693b0630
+ X-Amz-Request-Id:
+ - txg602da0f574264e4587ce-00693b0630
+ status: 200 OK
+ code: 200
+ duration: 8.639454ms
+ - id: 143
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/226a36fb-fe15-434f-84b4-a2fb41b8f6f3
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 522
+ body: '{"volume": {"id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3", "name": "tf-vol-inspiring-agnesi", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:57:50.222505+00:00", "modification_date": "2025-12-11T17:57:50.730334+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "522"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - ff0e029a-6ca4-4e4c-9d81-c33023e29e14
+ status: 200 OK
+ code: 200
+ duration: 50.810266ms
+ - id: 144
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1763
+ body: '{"server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-new", "image": null, "volumes": {"0": {"boot": false, "id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3", "name": "tf-vol-inspiring-agnesi", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:57:50.222505+00:00", "modification_date": "2025-12-11T17:57:50.730334+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:57:50.730334+00:00", "modification_date": "2025-12-11T17:58:05.800113+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "702", "node_id": "25"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1763"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - e9e9f589-ef69-42d5-8b07-7db97db070f8
+ status: 200 OK
+ code: 200
+ duration: 95.284139ms
+ - id: 145
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/226a36fb-fe15-434f-84b4-a2fb41b8f6f3
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 522
+ body: '{"volume": {"id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3", "name": "tf-vol-inspiring-agnesi", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:57:50.222505+00:00", "modification_date": "2025-12-11T17:57:50.730334+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "522"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 74509d15-faf8-4a29-a59b-95508885d5b5
+ status: 200 OK
+ code: 200
+ duration: 64.219596ms
+ - id: 146
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - c021a555-4655-4731-aab2-ad88490980c9
+ status: 200 OK
+ code: 200
+ duration: 45.03265ms
+ - id: 147
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:08 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - cb0fbb2f-4365-4e5c-9eb9-f0d6ed098707
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 52.374911ms
+ - id: 148
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 8c0e183b-8610-4ef8-939f-169f58ce9bec
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175808Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 17:58:08 GMT
+ X-Amz-Id-2:
+ - txgc36cbb73178044188b60-00693b0630
+ X-Amz-Request-Id:
+ - txgc36cbb73178044188b60-00693b0630
+ status: 200 OK
+ code: 200
+ duration: 11.642516ms
+ - id: 149
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ object-lock:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 2c3a593d-85d4-4a20-9124-a905de2c9012
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175808Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?object-lock=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 330
+ body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg43cb422b0a7845d8a1f7-00693b0630txg43cb422b0a7845d8a1f7-00693b0630/test-acc-action-instance-export-snap-wait-6334876314542282935
+ headers:
+ Content-Length:
+ - "330"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:58:08 GMT
+ X-Amz-Id-2:
+ - txg43cb422b0a7845d8a1f7-00693b0630
+ X-Amz-Request-Id:
+ - txg43cb422b0a7845d8a1f7-00693b0630
+ status: 404 Not Found
+ code: 404
+ duration: 12.590414ms
+ - id: 150
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - c6aa61c1-04c4-4067-a0dd-db1987d7d6d0
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175808Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 710
+ body: |-
+
+ test-acc-action-instance-export-snap-wait-63348763145422829351000falseexported-snapshot.qcow22025-12-11T17:57:03.000Z"4736dfb59c32b5fb904980999fe9a873-19"2467627008fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552STANDARD
+ headers:
+ Content-Length:
+ - "710"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:58:08 GMT
+ X-Amz-Id-2:
+ - txg8598ad6f290049f6852e-00693b0630
+ X-Amz-Request-Id:
+ - txg8598ad6f290049f6852e-00693b0630
+ status: 200 OK
+ code: 200
+ duration: 18.928522ms
+ - id: 151
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0e92f175-3524-433f-b67b-bc9b46268bb1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 451
+ body: '{"snapshot": {"id": "0e92f175-3524-433f-b67b-bc9b46268bb1", "name": "tf-snap-zen-mcnulty", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:57:09.461788+00:00", "modification_date": "2025-12-11T17:57:48.024184+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "available", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "451"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 4c5821b3-a199-4f2b-acd9-7c81cea12898
+ status: 200 OK
+ code: 200
+ duration: 49.850356ms
+ - id: 152
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 4ac03fd4-b013-48cf-8a3d-c2972009ac26
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175808Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 361
+ body: NoSuchTagSetThe TagSet does not existtxga96afd7c5e3f45da87a0-00693b0630txga96afd7c5e3f45da87a0-00693b0630/test-acc-action-instance-export-snap-wait-6334876314542282935test-acc-action-instance-export-snap-wait-6334876314542282935
+ headers:
+ Content-Length:
+ - "361"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:58:08 GMT
+ X-Amz-Id-2:
+ - txga96afd7c5e3f45da87a0-00693b0630
+ X-Amz-Request-Id:
+ - txga96afd7c5e3f45da87a0-00693b0630
+ status: 404 Not Found
+ code: 404
+ duration: 10.388474ms
+ - id: 153
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/226a36fb-fe15-434f-84b4-a2fb41b8f6f3
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 522
+ body: '{"volume": {"id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3", "name": "tf-vol-inspiring-agnesi", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:57:50.222505+00:00", "modification_date": "2025-12-11T17:57:50.730334+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "522"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 9989635f-a6d6-480b-9954-096b752da447
+ status: 200 OK
+ code: 200
+ duration: 57.759349ms
+ - id: 154
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ cors:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 6520260f-fd53-43b8-98f6-c9b65eb4e0bd
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175808Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?cors=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 298
+ body: NoSuchCORSConfigurationThe CORS configuration does not existtxg7118a3d009734ae39c80-00693b0630txg7118a3d009734ae39c80-00693b0630/test-acc-action-instance-export-snap-wait-6334876314542282935
+ headers:
+ Content-Length:
+ - "298"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:58:08 GMT
+ X-Amz-Id-2:
+ - txg7118a3d009734ae39c80-00693b0630
+ X-Amz-Request-Id:
+ - txg7118a3d009734ae39c80-00693b0630
+ status: 404 Not Found
+ code: 404
+ duration: 8.080255ms
+ - id: 155
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ versioning:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - e5f2bf0a-22d0-468f-8cf3-147b8616531e
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175808Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?versioning=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 107
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "107"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 17:58:08 GMT
+ X-Amz-Id-2:
+ - txgef5c1197d2ee47a2befb-00693b0630
+ X-Amz-Request-Id:
+ - txgef5c1197d2ee47a2befb-00693b0630
+ status: 200 OK
+ code: 200
+ duration: 7.082363ms
+ - id: 156
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ lifecycle:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - d01204ab-dae9-454c-98ae-b6551a27530d
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175808Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 394
+ body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg1d1e34d4d752415d8f14-00693b0630txg1d1e34d4d752415d8f14-00693b0630/test-acc-action-instance-export-snap-wait-6334876314542282935test-acc-action-instance-export-snap-wait-6334876314542282935
+ headers:
+ Content-Length:
+ - "394"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:58:08 GMT
+ X-Amz-Id-2:
+ - txg1d1e34d4d752415d8f14-00693b0630
+ X-Amz-Request-Id:
+ - txg1d1e34d4d752415d8f14-00693b0630
+ status: 404 Not Found
+ code: 404
+ duration: 8.806126ms
+ - id: 157
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1763
+ body: '{"server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-new", "image": null, "volumes": {"0": {"boot": false, "id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3", "name": "tf-vol-inspiring-agnesi", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:57:50.222505+00:00", "modification_date": "2025-12-11T17:57:50.730334+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:57:50.730334+00:00", "modification_date": "2025-12-11T17:58:05.800113+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "702", "node_id": "25"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1763"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 6dc08035-4add-4fee-9034-a26ecc00fb28
+ status: 200 OK
+ code: 200
+ duration: 87.739448ms
+ - id: 158
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/226a36fb-fe15-434f-84b4-a2fb41b8f6f3
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 522
+ body: '{"volume": {"id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3", "name": "tf-vol-inspiring-agnesi", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:57:50.222505+00:00", "modification_date": "2025-12-11T17:57:50.730334+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "522"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 32a24887-4fde-411a-a337-e2142d735991
+ status: 200 OK
+ code: 200
+ duration: 56.331091ms
+ - id: 159
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 96cce0a3-ad4e-4fb9-b4ad-efa8e64bdcd2
+ status: 200 OK
+ code: 200
+ duration: 51.683144ms
+ - id: 160
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:08 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 3c6a8eb7-e065-4db7-8e07-362ca8cd94d3
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 45.929523ms
+ - id: 161
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1763
+ body: '{"server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-new", "image": null, "volumes": {"0": {"boot": false, "id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3", "name": "tf-vol-inspiring-agnesi", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:57:50.222505+00:00", "modification_date": "2025-12-11T17:57:50.730334+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:57:50.730334+00:00", "modification_date": "2025-12-11T17:58:05.800113+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "702", "node_id": "25"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1763"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - d58c3604-e693-42e3-b542-a6ad053a97b4
+ status: 200 OK
+ code: 200
+ duration: 76.210967ms
+ - id: 162
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1763
+ body: '{"server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-new", "image": null, "volumes": {"0": {"boot": false, "id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3", "name": "tf-vol-inspiring-agnesi", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:57:50.222505+00:00", "modification_date": "2025-12-11T17:57:50.730334+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:57:50.730334+00:00", "modification_date": "2025-12-11T17:58:05.800113+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "702", "node_id": "25"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1763"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:09 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 87753b5e-5d86-4932-836b-f9b3627e2b1f
+ status: 200 OK
+ code: 200
+ duration: 93.936341ms
+ - id: 163
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 22
+ host: api.scaleway.com
+ body: '{"action":"terminate"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 353
+ body: '{"task": {"id": "2a9d368b-f43d-4b3f-b6ed-846ee1f7182f", "description": "server_terminate", "status": "pending", "href_from": "/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21/action", "href_result": "/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21", "started_at": "2025-12-11T17:58:09.188205+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "353"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:09 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2a9d368b-f43d-4b3f-b6ed-846ee1f7182f
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - f45bc806-f2c9-47f2-9e1d-fe8a82ac95d1
+ status: 202 Accepted
+ code: 202
+ duration: 207.692356ms
+ - id: 164
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1726
+ body: '{"server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-new", "image": null, "volumes": {"0": {"boot": false, "id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3", "name": "tf-vol-inspiring-agnesi", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21", "name": "test-tf-action-instance-export-snapshot-new"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T17:57:50.222505+00:00", "modification_date": "2025-12-11T17:57:50.730334+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:93:8b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:57:50.730334+00:00", "modification_date": "2025-12-11T17:58:09.039215+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "41", "hypervisor_id": "702", "node_id": "25"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1726"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:09 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 423ae8ba-e89d-4e18-9bfb-445cb8e5a480
+ status: 200 OK
+ code: 200
+ duration: 83.526046ms
+ - id: 165
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/308bcef9-1d78-4d0e-a35c-f66af84ddd21
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "308bcef9-1d78-4d0e-a35c-f66af84ddd21"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:14 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 066933f6-d410-4e23-9f55-4bd2af9442fc
+ status: 404 Not Found
+ code: 404
+ duration: 46.111286ms
+ - id: 166
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/226a36fb-fe15-434f-84b4-a2fb41b8f6f3
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:14 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - aad2c95a-47f9-40ca-a9e0-895c84cf42d0
+ status: 404 Not Found
+ code: 404
+ duration: 26.325827ms
+ - id: 167
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/226a36fb-fe15-434f-84b4-a2fb41b8f6f3
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 127
+ body: '{"message":"resource is not found","resource":"volume","resource_id":"226a36fb-fe15-434f-84b4-a2fb41b8f6f3","type":"not_found"}'
+ headers:
+ Content-Length:
+ - "127"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:14 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - e670b48c-7a4d-4d12-bd25-015e2b3e40c1
+ status: 404 Not Found
+ code: 404
+ duration: 19.78092ms
+ - id: 168
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/226a36fb-fe15-434f-84b4-a2fb41b8f6f3
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "226a36fb-fe15-434f-84b4-a2fb41b8f6f3"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:14 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 9223c02c-0435-406e-a6ef-61bdec22383f
+ status: 404 Not Found
+ code: 404
+ duration: 31.935748ms
+ - id: 169
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0e92f175-3524-433f-b67b-bc9b46268bb1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 451
+ body: '{"snapshot": {"id": "0e92f175-3524-433f-b67b-bc9b46268bb1", "name": "tf-snap-zen-mcnulty", "volume_type": "l_ssd", "creation_date": "2025-12-11T17:57:09.461788+00:00", "modification_date": "2025-12-11T17:57:48.024184+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "available", "base_volume": null, "tags": [], "zone": "fr-par-1", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "451"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:14 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 94b96e40-fd0a-4f62-b167-047a7531c828
+ status: 200 OK
+ code: 200
+ duration: 45.566113ms
+ - id: 170
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0e92f175-3524-433f-b67b-bc9b46268bb1
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:14 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - c440df22-d288-4b58-8c3c-31173e26ac84
+ status: 204 No Content
+ code: 204
+ duration: 95.952668ms
+ - id: 171
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0e92f175-3524-433f-b67b-bc9b46268bb1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 145
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_snapshot", "resource_id": "0e92f175-3524-433f-b67b-bc9b46268bb1"}'
+ headers:
+ Content-Length:
+ - "145"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:58:14 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 28f0f35a-2ea4-41c5-a647-9457813412ad
+ status: 404 Not Found
+ code: 404
+ duration: 31.706028ms
+ - id: 172
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 428f0507-c497-4fb5-ae5f-3846bd599c28
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175814Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 710
+ body: |-
+
+ test-acc-action-instance-export-snap-wait-63348763145422829351000falseexported-snapshot.qcow22025-12-11T17:57:03.000Z"4736dfb59c32b5fb904980999fe9a873-19"2467627008fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552STANDARD
+ headers:
+ Content-Length:
+ - "710"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:58:14 GMT
+ X-Amz-Id-2:
+ - txgf21ae65a3dd349a4b31a-00693b0636
+ X-Amz-Request-Id:
+ - txgf21ae65a3dd349a4b31a-00693b0636
+ status: 200 OK
+ code: 200
+ duration: 148.332672ms
+ - id: 173
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ x-id:
+ - DeleteObject
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - a2ff73a4-840c-4a33-9e01-4cf9a4f839df
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175814Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/exported-snapshot.qcow2?x-id=DeleteObject
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Date:
+ - Thu, 11 Dec 2025 17:58:14 GMT
+ X-Amz-Id-2:
+ - txgddc0f609d8b34bf6883a-00693b0636
+ X-Amz-Request-Id:
+ - txgddc0f609d8b34bf6883a-00693b0636
+ status: 204 No Content
+ code: 204
+ duration: 807.630802ms
+ - id: 174
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 9b9993ac-e136-4bbb-a6db-e4f2214b4c8a
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175815Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 17:58:15 GMT
+ X-Amz-Id-2:
+ - txgc5778b00c6a649b4bdfe-00693b0637
+ X-Amz-Request-Id:
+ - txgc5778b00c6a649b4bdfe-00693b0637
+ status: 200 OK
+ code: 200
+ duration: 54.785135ms
+ - id: 175
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ object-lock:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 4256719d-321b-4cec-8df7-3b81726aceba
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175815Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?object-lock=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 330
+ body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxge3eefa235fa64174912c-00693b0637txge3eefa235fa64174912c-00693b0637/test-acc-action-instance-export-snap-wait-6334876314542282935
+ headers:
+ Content-Length:
+ - "330"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:58:15 GMT
+ X-Amz-Id-2:
+ - txge3eefa235fa64174912c-00693b0637
+ X-Amz-Request-Id:
+ - txge3eefa235fa64174912c-00693b0637
+ status: 404 Not Found
+ code: 404
+ duration: 112.008914ms
+ - id: 176
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 27254632-ab81-4354-9f27-e924e1e8762d
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175816Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 287
+ body: |-
+
+ test-acc-action-instance-export-snap-wait-63348763145422829351000false
+ headers:
+ Content-Length:
+ - "287"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:58:16 GMT
+ X-Amz-Id-2:
+ - txg266bc37fd68e4c98985c-00693b0638
+ X-Amz-Request-Id:
+ - txg266bc37fd68e4c98985c-00693b0638
+ status: 200 OK
+ code: 200
+ duration: 13.198735ms
+ - id: 177
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 42af5427-4572-49bb-b7ca-8753db87575c
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175816Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 361
+ body: NoSuchTagSetThe TagSet does not existtxg489d32bf57e34feebea8-00693b0638txg489d32bf57e34feebea8-00693b0638/test-acc-action-instance-export-snap-wait-6334876314542282935test-acc-action-instance-export-snap-wait-6334876314542282935
+ headers:
+ Content-Length:
+ - "361"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:58:16 GMT
+ X-Amz-Id-2:
+ - txg489d32bf57e34feebea8-00693b0638
+ X-Amz-Request-Id:
+ - txg489d32bf57e34feebea8-00693b0638
+ status: 404 Not Found
+ code: 404
+ duration: 9.775174ms
+ - id: 178
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ cors:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 4ad4d4fa-fb9d-4357-9087-80a657f11ee0
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175816Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?cors=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 298
+ body: NoSuchCORSConfigurationThe CORS configuration does not existtxgc59f4959ef0f4463b076-00693b0638txgc59f4959ef0f4463b076-00693b0638/test-acc-action-instance-export-snap-wait-6334876314542282935
+ headers:
+ Content-Length:
+ - "298"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:58:16 GMT
+ X-Amz-Id-2:
+ - txgc59f4959ef0f4463b076-00693b0638
+ X-Amz-Request-Id:
+ - txgc59f4959ef0f4463b076-00693b0638
+ status: 404 Not Found
+ code: 404
+ duration: 10.286954ms
+ - id: 179
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ versioning:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 11ba9995-5a67-4775-aa71-1677fc8f6afa
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175816Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?versioning=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 107
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "107"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 17:58:16 GMT
+ X-Amz-Id-2:
+ - txg1f291fecfb244daaab1a-00693b0638
+ X-Amz-Request-Id:
+ - txg1f291fecfb244daaab1a-00693b0638
+ status: 200 OK
+ code: 200
+ duration: 44.131784ms
+ - id: 180
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ form:
+ lifecycle:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - bf8a6824-0c4e-48db-9cf6-c9c1af7f3231
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175816Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 394
+ body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg1d10e591dee948348cc9-00693b0638txg1d10e591dee948348cc9-00693b0638/test-acc-action-instance-export-snap-wait-6334876314542282935test-acc-action-instance-export-snap-wait-6334876314542282935
+ headers:
+ Content-Length:
+ - "394"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 17:58:16 GMT
+ X-Amz-Id-2:
+ - txg1d10e591dee948348cc9-00693b0638
+ X-Amz-Request-Id:
+ - txg1d10e591dee948348cc9-00693b0638
+ status: 404 Not Found
+ code: 404
+ duration: 6.590751ms
+ - id: 181
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 0894d376-4e10-4ac0-8b70-dc09fb0833ec
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.39.5 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.3 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T175816Z
+ url: https://test-acc-action-instance-export-snap-wait-6334876314542282935.s3.fr-par.scw.cloud/
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Date:
+ - Thu, 11 Dec 2025 17:58:16 GMT
+ X-Amz-Id-2:
+ - txg62a5d2f77ac94212bf59-00693b0638
+ X-Amz-Request-Id:
+ - txg62a5d2f77ac94212bf59-00693b0638
+ status: 204 No Content
+ code: 204
+ duration: 157.924214ms
diff --git a/internal/services/instance/testdata/action-instance-export-snapshot-zone.cassette.yaml b/internal/services/instance/testdata/action-instance-export-snapshot-zone.cassette.yaml
new file mode 100644
index 000000000..aa0f857cf
--- /dev/null
+++ b/internal/services/instance/testdata/action-instance-export-snapshot-zone.cassette.yaml
@@ -0,0 +1,4872 @@
+---
+version: 2
+interactions:
+ - id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ page:
+ - "1"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/products/servers?page=1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 31936
+ body: '{"servers": {"DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 30.66, "hourly_price": 0.042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.454, "hourly_price": 0.0198, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.424, "hourly_price": 0.0088, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 46.5734, "hourly_price": 0.06378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 554.07, "hourly_price": 0.759, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 274.48, "hourly_price": 0.376, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 136.51, "hourly_price": 0.187, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1197.93, "hourly_price": 1.641, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 66.43, "hourly_price": 0.091, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": null, "hourly_price": null, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": null, "hourly_price": null, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": null, "hourly_price": null, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}}}'
+ headers:
+ Content-Length:
+ - "31936"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:04 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 37fbb73b-6a66-4445-bd6f-d5a4581b93df
+ X-Total-Count:
+ - "41"
+ status: 200 OK
+ code: 200
+ duration: 112.039546ms
+ - id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ image_label:
+ - ubuntu_jammy
+ order_by:
+ - type_asc
+ type:
+ - instance_local
+ zone:
+ - nl-ams-2
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_local&zone=nl-ams-2
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 272
+ body: '{"local_images":[{"id":"0b4b9625-39c0-4ef4-aa6b-c2452287c129","arch":"x86_64","zone":"nl-ams-2","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS"],"label":"ubuntu_jammy","type":"instance_local"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "272"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - ab10a7b0-afae-4c38-ba53-d9deee9bbc3c
+ status: 200 OK
+ code: 200
+ duration: 52.092493ms
+ - id: 2
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 298
+ host: api.scaleway.com
+ body: '{"name":"test-tf-action-instance-export-snapshot-zone","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"0b4b9625-39c0-4ef4-aa6b-c2452287c129","volumes":{"0":{"boot":false,"size":10000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2218
+ body: '{"server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-zone", "image": {"id": "0b4b9625-39c0-4ef4-aa6b-c2452287c129", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "9fec48eb-63b2-487c-8e36-e7f92060ebbf", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:20.660756+00:00", "modification_date": "2025-09-12T09:11:20.660756+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "nl-ams-2"}, "volumes": {"0": {"boot": false, "id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:05.190476+00:00", "tags": [], "zone": "nl-ams-2"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:40:78:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:05.190476+00:00", "bootscript": null, "security_group": {"id": "cc023ec3-a266-4a65-a26d-72a78882bfd0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "nl-ams-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2218"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:05 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 78e72be5-0088-4847-9905-2d7a9b2cf022
+ status: 201 Created
+ code: 201
+ duration: 440.497808ms
+ - id: 3
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2218
+ body: '{"server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-zone", "image": {"id": "0b4b9625-39c0-4ef4-aa6b-c2452287c129", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "9fec48eb-63b2-487c-8e36-e7f92060ebbf", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:20.660756+00:00", "modification_date": "2025-09-12T09:11:20.660756+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "nl-ams-2"}, "volumes": {"0": {"boot": false, "id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:05.190476+00:00", "tags": [], "zone": "nl-ams-2"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:40:78:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:05.190476+00:00", "bootscript": null, "security_group": {"id": "cc023ec3-a266-4a65-a26d-72a78882bfd0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "nl-ams-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2218"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 7ddff097-4188-4c9f-917f-0586e826d690
+ status: 200 OK
+ code: 200
+ duration: 125.669903ms
+ - id: 4
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2218
+ body: '{"server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-zone", "image": {"id": "0b4b9625-39c0-4ef4-aa6b-c2452287c129", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "9fec48eb-63b2-487c-8e36-e7f92060ebbf", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:20.660756+00:00", "modification_date": "2025-09-12T09:11:20.660756+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "nl-ams-2"}, "volumes": {"0": {"boot": false, "id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:05.190476+00:00", "tags": [], "zone": "nl-ams-2"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:40:78:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:05.190476+00:00", "bootscript": null, "security_group": {"id": "cc023ec3-a266-4a65-a26d-72a78882bfd0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "nl-ams-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2218"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 319eb538-3ff0-43fe-8605-32f9f80ce31f
+ status: 200 OK
+ code: 200
+ duration: 123.148525ms
+ - id: 5
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 20
+ host: api.scaleway.com
+ body: '{"action":"poweron"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 357
+ body: '{"task": {"id": "f5b81fdc-2e9f-4c95-a6f2-93a620144006", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/5c81a78d-3066-44df-b410-9020da52353d/action", "href_result": "/servers/5c81a78d-3066-44df-b410-9020da52353d", "started_at": "2025-12-11T20:50:05.933415+00:00", "terminated_at": null, "progress": 0, "zone": "nl-ams-2"}}'
+ headers:
+ Content-Length:
+ - "357"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:05 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/nl-ams-2/tasks/f5b81fdc-2e9f-4c95-a6f2-93a620144006
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 93d2a7e7-0079-484c-86e3-8c831c57bc47
+ status: 202 Accepted
+ code: 202
+ duration: 267.396453ms
+ - id: 6
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2240
+ body: '{"server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-zone", "image": {"id": "0b4b9625-39c0-4ef4-aa6b-c2452287c129", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "9fec48eb-63b2-487c-8e36-e7f92060ebbf", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:20.660756+00:00", "modification_date": "2025-09-12T09:11:20.660756+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "nl-ams-2"}, "volumes": {"0": {"boot": false, "id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:05.190476+00:00", "tags": [], "zone": "nl-ams-2"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:40:78:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:05.747721+00:00", "bootscript": null, "security_group": {"id": "cc023ec3-a266-4a65-a26d-72a78882bfd0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "nl-ams-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2240"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:06 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 88f44fb6-2732-4de4-87a4-d1c392b296ae
+ status: 200 OK
+ code: 200
+ duration: 121.46965ms
+ - id: 7
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - fcf1f47f-bf7f-4e22-937f-9cf018a4dd10
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205004Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/
+ method: PUT
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Content-Length:
+ - "0"
+ Date:
+ - Thu, 11 Dec 2025 20:50:04 GMT
+ Location:
+ - /test-acc-action-instance-export-snap-zone-7138371657452517839
+ X-Amz-Id-2:
+ - txgc96310f18d33406a87d0-00693b2e7c
+ X-Amz-Request-Id:
+ - txgc96310f18d33406a87d0-00693b2e7c
+ status: 200 OK
+ code: 200
+ duration: 4.298246177s
+ - id: 8
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 84e8c1b6-c66a-43e4-8351-5796d831b35a
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,Z,e
+ X-Amz-Acl:
+ - private
+ X-Amz-Checksum-Crc32:
+ - AAAAAA==
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205009Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?acl=
+ method: PUT
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Content-Length:
+ - "0"
+ Date:
+ - Thu, 11 Dec 2025 20:50:09 GMT
+ X-Amz-Id-2:
+ - txg15a5577099074647b723-00693b2e81
+ X-Amz-Request-Id:
+ - txg15a5577099074647b723-00693b2e81
+ status: 200 OK
+ code: 200
+ duration: 129.065875ms
+ - id: 9
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 34b8111c-d37b-4ad5-8aee-9e561e1d90a5
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205009Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:50:09 GMT
+ X-Amz-Id-2:
+ - txg30ddf4e48807437897fe-00693b2e81
+ X-Amz-Request-Id:
+ - txg30ddf4e48807437897fe-00693b2e81
+ status: 200 OK
+ code: 200
+ duration: 60.493891ms
+ - id: 10
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ object-lock:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 6793c94c-6e6b-48fd-a1f8-f7949450d6c3
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205009Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?object-lock=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 330
+ body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxged96c45550604e3d8010-00693b2e81txged96c45550604e3d8010-00693b2e81/test-acc-action-instance-export-snap-zone-7138371657452517839
+ headers:
+ Content-Length:
+ - "330"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:09 GMT
+ X-Amz-Id-2:
+ - txged96c45550604e3d8010-00693b2e81
+ X-Amz-Request-Id:
+ - txged96c45550604e3d8010-00693b2e81
+ status: 404 Not Found
+ code: 404
+ duration: 67.957368ms
+ - id: 11
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 33d3a49e-b828-4743-b6b8-058fa74ab9c2
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205009Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 287
+ body: |-
+
+ test-acc-action-instance-export-snap-zone-71383716574525178391000false
+ headers:
+ Content-Length:
+ - "287"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:09 GMT
+ X-Amz-Id-2:
+ - txgde244a8c58f44ba888a1-00693b2e81
+ X-Amz-Request-Id:
+ - txgde244a8c58f44ba888a1-00693b2e81
+ status: 200 OK
+ code: 200
+ duration: 175.183437ms
+ - id: 12
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 15089735-1907-43ee-a6aa-f5c7a78b22ee
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205009Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 361
+ body: NoSuchTagSetThe TagSet does not existtxg99af5df198d1450b9088-00693b2e81txg99af5df198d1450b9088-00693b2e81/test-acc-action-instance-export-snap-zone-7138371657452517839test-acc-action-instance-export-snap-zone-7138371657452517839
+ headers:
+ Content-Length:
+ - "361"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:09 GMT
+ X-Amz-Id-2:
+ - txg99af5df198d1450b9088-00693b2e81
+ X-Amz-Request-Id:
+ - txg99af5df198d1450b9088-00693b2e81
+ status: 404 Not Found
+ code: 404
+ duration: 46.453244ms
+ - id: 13
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ cors:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 994d74b6-68ea-4dd0-9483-26dbe2fe6623
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205009Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?cors=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 298
+ body: NoSuchCORSConfigurationThe CORS configuration does not existtxgabbf86bf5088489bbccb-00693b2e81txgabbf86bf5088489bbccb-00693b2e81/test-acc-action-instance-export-snap-zone-7138371657452517839
+ headers:
+ Content-Length:
+ - "298"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:09 GMT
+ X-Amz-Id-2:
+ - txgabbf86bf5088489bbccb-00693b2e81
+ X-Amz-Request-Id:
+ - txgabbf86bf5088489bbccb-00693b2e81
+ status: 404 Not Found
+ code: 404
+ duration: 39.619882ms
+ - id: 14
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ versioning:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - ee667123-b44e-461d-bb81-6668f038ca38
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205009Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?versioning=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 107
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "107"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:50:09 GMT
+ X-Amz-Id-2:
+ - txgb8b2f786578c428e9c3f-00693b2e81
+ X-Amz-Request-Id:
+ - txgb8b2f786578c428e9c3f-00693b2e81
+ status: 200 OK
+ code: 200
+ duration: 80.455927ms
+ - id: 15
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ lifecycle:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - ca12ea95-0d01-4c3c-bd69-02eab32c5a58
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205009Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 394
+ body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg1f43b50ee0a34ced9cf2-00693b2e81txg1f43b50ee0a34ced9cf2-00693b2e81/test-acc-action-instance-export-snap-zone-7138371657452517839test-acc-action-instance-export-snap-zone-7138371657452517839
+ headers:
+ Content-Length:
+ - "394"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:50:09 GMT
+ X-Amz-Id-2:
+ - txg1f43b50ee0a34ced9cf2-00693b2e81
+ X-Amz-Request-Id:
+ - txg1f43b50ee0a34ced9cf2-00693b2e81
+ status: 404 Not Found
+ code: 404
+ duration: 58.71043ms
+ - id: 16
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2342
+ body: '{"server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-zone", "image": {"id": "0b4b9625-39c0-4ef4-aa6b-c2452287c129", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "9fec48eb-63b2-487c-8e36-e7f92060ebbf", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:20.660756+00:00", "modification_date": "2025-09-12T09:11:20.660756+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "nl-ams-2"}, "volumes": {"0": {"boot": false, "id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:05.190476+00:00", "tags": [], "zone": "nl-ams-2"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:40:78:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:05.747721+00:00", "bootscript": null, "security_group": {"id": "cc023ec3-a266-4a65-a26d-72a78882bfd0", "name": "Default security group"}, "location": {"zone_id": "nl-ams-2", "platform_id": "24", "cluster_id": "2", "hypervisor_id": "401", "node_id": "38"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "nl-ams-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2342"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:11 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - ab8748c1-359c-4093-a464-37674b868bc9
+ status: 200 OK
+ code: 200
+ duration: 115.349896ms
+ - id: 17
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2373
+ body: '{"server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-zone", "image": {"id": "0b4b9625-39c0-4ef4-aa6b-c2452287c129", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "9fec48eb-63b2-487c-8e36-e7f92060ebbf", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:20.660756+00:00", "modification_date": "2025-09-12T09:11:20.660756+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "nl-ams-2"}, "volumes": {"0": {"boot": false, "id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:05.190476+00:00", "tags": [], "zone": "nl-ams-2"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:40:78:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:15.576985+00:00", "bootscript": null, "security_group": {"id": "cc023ec3-a266-4a65-a26d-72a78882bfd0", "name": "Default security group"}, "location": {"zone_id": "nl-ams-2", "platform_id": "24", "cluster_id": "2", "hypervisor_id": "401", "node_id": "38"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "nl-ams-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2373"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:16 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 870e3174-aa2f-4c67-92ce-ac79f1abc891
+ status: 200 OK
+ code: 200
+ duration: 170.107095ms
+ - id: 18
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2373
+ body: '{"server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-zone", "image": {"id": "0b4b9625-39c0-4ef4-aa6b-c2452287c129", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "9fec48eb-63b2-487c-8e36-e7f92060ebbf", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:20.660756+00:00", "modification_date": "2025-09-12T09:11:20.660756+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "nl-ams-2"}, "volumes": {"0": {"boot": false, "id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:05.190476+00:00", "tags": [], "zone": "nl-ams-2"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:40:78:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:15.576985+00:00", "bootscript": null, "security_group": {"id": "cc023ec3-a266-4a65-a26d-72a78882bfd0", "name": "Default security group"}, "location": {"zone_id": "nl-ams-2", "platform_id": "24", "cluster_id": "2", "hypervisor_id": "401", "node_id": "38"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "nl-ams-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2373"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:16 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - c90f2dca-b66e-4f48-bfa8-2fb58e5ba8f7
+ status: 200 OK
+ code: 200
+ duration: 268.723181ms
+ - id: 19
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/volumes/5bf64b9c-d770-4dd9-b53c-ad0897a170ae
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 528
+ body: '{"volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:05.190476+00:00", "tags": [], "zone": "nl-ams-2"}}'
+ headers:
+ Content-Length:
+ - "528"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:16 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 9f63b607-897f-4acf-9491-6c3a8def9477
+ status: 200 OK
+ code: 200
+ duration: 92.475517ms
+ - id: 20
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:16 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - a8e82f29-ba1a-4d08-9420-d2e4924de1e9
+ status: 200 OK
+ code: 200
+ duration: 175.327616ms
+ - id: 21
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:16 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 890eb181-9327-4eb1-93c2-5ca3c5958743
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 70.60843ms
+ - id: 22
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 139
+ host: api.scaleway.com
+ body: '{"name":"tf-snap-compassionate-hoover","volume_id":"5bf64b9c-d770-4dd9-b53c-ad0897a170ae","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 856
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:50:17.078089+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}, "task": {"id": "4c9fd973-5bfa-4454-b726-0b0a3b70b9f1", "description": "volume_snapshot", "status": "pending", "href_from": "/snapshots", "href_result": "snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "started_at": "2025-12-11T20:50:17.349466+00:00", "terminated_at": null, "progress": 0, "zone": "nl-ams-2"}}'
+ headers:
+ Content-Length:
+ - "856"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:17 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - f2de1de8-7a1f-42a0-a33d-4dcf5140fe88
+ status: 201 Created
+ code: 201
+ duration: 492.459467ms
+ - id: 23
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 545
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:50:17.078089+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "545"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:17 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 1917fe5d-66a5-416a-9b24-289994891af0
+ status: 200 OK
+ code: 200
+ duration: 264.015675ms
+ - id: 24
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 545
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:50:17.078089+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "545"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:22 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 7c381483-8c81-4452-9080-1feb8a6e6333
+ status: 200 OK
+ code: 200
+ duration: 193.459801ms
+ - id: 25
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 545
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:50:17.078089+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "545"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:28 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 0b6e3cea-eb4c-4119-9834-70550f163cc6
+ status: 200 OK
+ code: 200
+ duration: 120.095903ms
+ - id: 26
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 545
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:50:17.078089+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "545"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:33 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 1b63ced6-2774-4f5d-be75-2d46a8c9717b
+ status: 200 OK
+ code: 200
+ duration: 75.763426ms
+ - id: 27
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 545
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:50:17.078089+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "545"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:38 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - a55bbb96-dd95-4bb6-a1b5-ad68d5ba224c
+ status: 200 OK
+ code: 200
+ duration: 111.706234ms
+ - id: 28
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 545
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:50:17.078089+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "545"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:43 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 04b9aa73-6766-40e9-afd0-1153d37ff002
+ status: 200 OK
+ code: 200
+ duration: 88.901175ms
+ - id: 29
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 545
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:50:17.078089+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "545"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:48 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 136ebc06-12e4-45d5-983a-3fddb57279f4
+ status: 200 OK
+ code: 200
+ duration: 71.872081ms
+ - id: 30
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 545
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:50:17.078089+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "snapshotting", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "545"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:53 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - f0902049-036b-45a7-9a78-10b3cab1c566
+ status: 200 OK
+ code: 200
+ duration: 77.382196ms
+ - id: 31
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 542
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:50:54.361093+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "available", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "542"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 13f0eb38-1844-4759-80af-17b42e7bde41
+ status: 200 OK
+ code: 200
+ duration: 68.196543ms
+ - id: 32
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 542
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:50:54.361093+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "available", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "542"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 81813dfe-e51c-4960-a476-8f9324d7c5b9
+ status: 200 OK
+ code: 200
+ duration: 90.541145ms
+ - id: 33
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 542
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:50:54.361093+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "available", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "542"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:50:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - f4ba5085-3d4f-4be9-8e13-87bd8da1d6ee
+ status: 200 OK
+ code: 200
+ duration: 106.899168ms
+ - id: 34
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 106
+ host: api.scaleway.com
+ body: '{"bucket":"test-acc-action-instance-export-snap-zone-7138371657452517839","key":"exported-snapshot.qcow2"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f/export
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 422
+ body: '{"task": {"id": "dbab552b-d590-4403-88ad-e9a4aaa544dc", "description": "export_snapshot", "status": "pending", "href_from": "/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f/export", "href_result": "https://s3.nl-ams.scw.cloud/test-acc-action-instance-export-snap-zone-7138371657452517839/exported-snapshot.qcow2", "started_at": "2025-12-11T20:51:04.395808+00:00", "terminated_at": null, "progress": 0, "zone": "nl-ams-2"}}'
+ headers:
+ Content-Length:
+ - "422"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:04 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/nl-ams-2/tasks/dbab552b-d590-4403-88ad-e9a4aaa544dc
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 83230e85-3a31-4d6e-acd9-de75a8aa5251
+ status: 202 Accepted
+ code: 202
+ duration: 5.642958117s
+ - id: 35
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 542
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:50:58.839144+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "542"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:04 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 0c8f0f00-9acd-4a05-9c71-5e5213086b1f
+ status: 200 OK
+ code: 200
+ duration: 93.323614ms
+ - id: 36
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 1e587bc8-cc4e-4664-b222-88c996c7cb50
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205104Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: -1
+ body: ""
+ headers:
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:04 GMT
+ X-Amz-Bucket-Region:
+ - nl-ams
+ X-Amz-Id-2:
+ - txgb7685fa43f014d379d00-00693b2eb8
+ X-Amz-Request-Id:
+ - txgb7685fa43f014d379d00-00693b2eb8
+ status: 200 OK
+ code: 200
+ duration: 55.254009ms
+ - id: 37
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - e1b0bc08-c37d-4d15-bf28-284e30ef2d83
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205104Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:51:04 GMT
+ X-Amz-Id-2:
+ - txge5a7e80f734a4eb6aa68-00693b2eb8
+ X-Amz-Request-Id:
+ - txge5a7e80f734a4eb6aa68-00693b2eb8
+ status: 200 OK
+ code: 200
+ duration: 45.173826ms
+ - id: 38
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2373
+ body: '{"server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-zone", "image": {"id": "0b4b9625-39c0-4ef4-aa6b-c2452287c129", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "9fec48eb-63b2-487c-8e36-e7f92060ebbf", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:20.660756+00:00", "modification_date": "2025-09-12T09:11:20.660756+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "nl-ams-2"}, "volumes": {"0": {"boot": false, "id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:54.361093+00:00", "tags": [], "zone": "nl-ams-2"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:40:78:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:15.576985+00:00", "bootscript": null, "security_group": {"id": "cc023ec3-a266-4a65-a26d-72a78882bfd0", "name": "Default security group"}, "location": {"zone_id": "nl-ams-2", "platform_id": "24", "cluster_id": "2", "hypervisor_id": "401", "node_id": "38"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "nl-ams-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2373"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 75c9b3d3-4548-4a2e-ab12-a81658be913b
+ status: 200 OK
+ code: 200
+ duration: 165.011277ms
+ - id: 39
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ object-lock:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - c7f60b41-4dac-41ed-bd14-f5382023a046
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205104Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?object-lock=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 330
+ body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg2ee77c69467543dba378-00693b2eb8txg2ee77c69467543dba378-00693b2eb8/test-acc-action-instance-export-snap-zone-7138371657452517839
+ headers:
+ Content-Length:
+ - "330"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:04 GMT
+ X-Amz-Id-2:
+ - txg2ee77c69467543dba378-00693b2eb8
+ X-Amz-Request-Id:
+ - txg2ee77c69467543dba378-00693b2eb8
+ status: 404 Not Found
+ code: 404
+ duration: 122.348631ms
+ - id: 40
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/volumes/5bf64b9c-d770-4dd9-b53c-ad0897a170ae
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 528
+ body: '{"volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:54.361093+00:00", "tags": [], "zone": "nl-ams-2"}}'
+ headers:
+ Content-Length:
+ - "528"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - a8f2b809-1e1f-4036-988d-6176ba1e310b
+ status: 200 OK
+ code: 200
+ duration: 102.47393ms
+ - id: 41
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 8840d992-58b0-40bd-95d0-39eee06be995
+ status: 200 OK
+ code: 200
+ duration: 64.795471ms
+ - id: 42
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - a4d06b6a-3972-4e9f-9dc1-ba8eefb9ad45
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205105Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 782
+ body: |-
+
+ test-acc-action-instance-export-snap-zone-71383716574525178391000falseexported-snapshot.qcow22025-12-11T20:51:03.000Z"d41d8cd98f00b204e9800998ecf8427e"0fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552STANDARDCRC32FULL_OBJECT
+ headers:
+ Content-Length:
+ - "782"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:05 GMT
+ X-Amz-Id-2:
+ - txgfce1d4fdb313438dbbbb-00693b2eb9
+ X-Amz-Request-Id:
+ - txgfce1d4fdb313438dbbbb-00693b2eb9
+ status: 200 OK
+ code: 200
+ duration: 173.42074ms
+ - id: 43
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:05 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - bbc90d16-e5d6-4b85-8a27-d04d1a9ef6d6
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 83.038916ms
+ - id: 44
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - dbb7121b-2e89-479f-a957-074157a50de5
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205105Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 361
+ body: NoSuchTagSetThe TagSet does not existtxg3ec596bda5a3415aaa16-00693b2eb9txg3ec596bda5a3415aaa16-00693b2eb9/test-acc-action-instance-export-snap-zone-7138371657452517839test-acc-action-instance-export-snap-zone-7138371657452517839
+ headers:
+ Content-Length:
+ - "361"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:05 GMT
+ X-Amz-Id-2:
+ - txg3ec596bda5a3415aaa16-00693b2eb9
+ X-Amz-Request-Id:
+ - txg3ec596bda5a3415aaa16-00693b2eb9
+ status: 404 Not Found
+ code: 404
+ duration: 86.463171ms
+ - id: 45
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ cors:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - e3a94f2c-54cf-44cd-b9dc-53920107275b
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205105Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?cors=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 298
+ body: NoSuchCORSConfigurationThe CORS configuration does not existtxg829e0add7f46414d8053-00693b2eb9txg829e0add7f46414d8053-00693b2eb9/test-acc-action-instance-export-snap-zone-7138371657452517839
+ headers:
+ Content-Length:
+ - "298"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:05 GMT
+ X-Amz-Id-2:
+ - txg829e0add7f46414d8053-00693b2eb9
+ X-Amz-Request-Id:
+ - txg829e0add7f46414d8053-00693b2eb9
+ status: 404 Not Found
+ code: 404
+ duration: 46.512131ms
+ - id: 46
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 542
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:50:58.839144+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "542"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 26e2fe4f-38f4-4ef7-8c79-6b61b211af1e
+ status: 200 OK
+ code: 200
+ duration: 74.182191ms
+ - id: 47
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ versioning:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - e315b39e-804d-47aa-a585-de67bc164e50
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205105Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?versioning=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 107
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "107"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:51:05 GMT
+ X-Amz-Id-2:
+ - txg5c05453b12d94448abbd-00693b2eb9
+ X-Amz-Request-Id:
+ - txg5c05453b12d94448abbd-00693b2eb9
+ status: 200 OK
+ code: 200
+ duration: 58.533092ms
+ - id: 48
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ lifecycle:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - c19bfa88-38fc-4e61-beae-b54b9c4837af
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205105Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 394
+ body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxgc511a5b2058e4b76afe7-00693b2eb9txgc511a5b2058e4b76afe7-00693b2eb9/test-acc-action-instance-export-snap-zone-7138371657452517839test-acc-action-instance-export-snap-zone-7138371657452517839
+ headers:
+ Content-Length:
+ - "394"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:05 GMT
+ X-Amz-Id-2:
+ - txgc511a5b2058e4b76afe7-00693b2eb9
+ X-Amz-Request-Id:
+ - txgc511a5b2058e4b76afe7-00693b2eb9
+ status: 404 Not Found
+ code: 404
+ duration: 45.839205ms
+ - id: 49
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - c913d97a-246b-4150-ac21-44dccd291e2e
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205105Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:51:05 GMT
+ X-Amz-Id-2:
+ - txg723b95ab2a164e15a6af-00693b2eb9
+ X-Amz-Request-Id:
+ - txg723b95ab2a164e15a6af-00693b2eb9
+ status: 200 OK
+ code: 200
+ duration: 15.094076ms
+ - id: 50
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ object-lock:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 7b733a84-70b0-4229-97ca-cf4532d344d8
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205105Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?object-lock=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 330
+ body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxgdbaae7c7357f4812b9e2-00693b2eb9txgdbaae7c7357f4812b9e2-00693b2eb9/test-acc-action-instance-export-snap-zone-7138371657452517839
+ headers:
+ Content-Length:
+ - "330"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:05 GMT
+ X-Amz-Id-2:
+ - txgdbaae7c7357f4812b9e2-00693b2eb9
+ X-Amz-Request-Id:
+ - txgdbaae7c7357f4812b9e2-00693b2eb9
+ status: 404 Not Found
+ code: 404
+ duration: 43.43098ms
+ - id: 51
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2373
+ body: '{"server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-zone", "image": {"id": "0b4b9625-39c0-4ef4-aa6b-c2452287c129", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "9fec48eb-63b2-487c-8e36-e7f92060ebbf", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:20.660756+00:00", "modification_date": "2025-09-12T09:11:20.660756+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "nl-ams-2"}, "volumes": {"0": {"boot": false, "id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:54.361093+00:00", "tags": [], "zone": "nl-ams-2"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:40:78:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:15.576985+00:00", "bootscript": null, "security_group": {"id": "cc023ec3-a266-4a65-a26d-72a78882bfd0", "name": "Default security group"}, "location": {"zone_id": "nl-ams-2", "platform_id": "24", "cluster_id": "2", "hypervisor_id": "401", "node_id": "38"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "nl-ams-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2373"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - e9161d27-baa3-4107-b540-576a86851821
+ status: 200 OK
+ code: 200
+ duration: 152.95547ms
+ - id: 52
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 318eaa08-5d9d-4a0c-8a35-b9c2c82196ce
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205105Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 782
+ body: |-
+
+ test-acc-action-instance-export-snap-zone-71383716574525178391000falseexported-snapshot.qcow22025-12-11T20:51:03.000Z"d41d8cd98f00b204e9800998ecf8427e"0fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552STANDARDCRC32FULL_OBJECT
+ headers:
+ Content-Length:
+ - "782"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:05 GMT
+ X-Amz-Id-2:
+ - txge12d051afc7141c9b976-00693b2eb9
+ X-Amz-Request-Id:
+ - txge12d051afc7141c9b976-00693b2eb9
+ status: 200 OK
+ code: 200
+ duration: 142.425341ms
+ - id: 53
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/volumes/5bf64b9c-d770-4dd9-b53c-ad0897a170ae
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 528
+ body: '{"volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:54.361093+00:00", "tags": [], "zone": "nl-ams-2"}}'
+ headers:
+ Content-Length:
+ - "528"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 2b40cbd1-4e2e-49d3-8e40-0920a7b48863
+ status: 200 OK
+ code: 200
+ duration: 89.278752ms
+ - id: 54
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - d215d1df-6374-4787-8de9-60638fd74bc7
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205105Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 361
+ body: NoSuchTagSetThe TagSet does not existtxgd08279c9fddd421aa7f7-00693b2eb9txgd08279c9fddd421aa7f7-00693b2eb9/test-acc-action-instance-export-snap-zone-7138371657452517839test-acc-action-instance-export-snap-zone-7138371657452517839
+ headers:
+ Content-Length:
+ - "361"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:05 GMT
+ X-Amz-Id-2:
+ - txgd08279c9fddd421aa7f7-00693b2eb9
+ X-Amz-Request-Id:
+ - txgd08279c9fddd421aa7f7-00693b2eb9
+ status: 404 Not Found
+ code: 404
+ duration: 51.536303ms
+ - id: 55
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ cors:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - c9eae52a-3209-4ead-a879-ca56d01ecdfa
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205105Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?cors=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 298
+ body: NoSuchCORSConfigurationThe CORS configuration does not existtxgb6428a7d77dd4aea9e20-00693b2eb9txgb6428a7d77dd4aea9e20-00693b2eb9/test-acc-action-instance-export-snap-zone-7138371657452517839
+ headers:
+ Content-Length:
+ - "298"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:05 GMT
+ X-Amz-Id-2:
+ - txgb6428a7d77dd4aea9e20-00693b2eb9
+ X-Amz-Request-Id:
+ - txgb6428a7d77dd4aea9e20-00693b2eb9
+ status: 404 Not Found
+ code: 404
+ duration: 15.0588ms
+ - id: 56
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - e278516c-e8c2-4f83-97cc-e8e4fcde6cac
+ status: 200 OK
+ code: 200
+ duration: 79.566731ms
+ - id: 57
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ versioning:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 03a88b96-c717-4ccb-9003-694ed5a152b0
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205105Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?versioning=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 107
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "107"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:51:05 GMT
+ X-Amz-Id-2:
+ - txg9ab6a29637e34105aa41-00693b2eb9
+ X-Amz-Request-Id:
+ - txg9ab6a29637e34105aa41-00693b2eb9
+ status: 200 OK
+ code: 200
+ duration: 113.945799ms
+ - id: 58
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:05 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - b3294f14-3859-4ed6-8267-fe291f37389b
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 71.438164ms
+ - id: 59
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ lifecycle:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 79b4e5b0-e66c-413a-acf1-1db9c0eb3e12
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205105Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 394
+ body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg6b90324c50784d4a8aa2-00693b2eb9txg6b90324c50784d4a8aa2-00693b2eb9/test-acc-action-instance-export-snap-zone-7138371657452517839test-acc-action-instance-export-snap-zone-7138371657452517839
+ headers:
+ Content-Length:
+ - "394"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:05 GMT
+ X-Amz-Id-2:
+ - txg6b90324c50784d4a8aa2-00693b2eb9
+ X-Amz-Request-Id:
+ - txg6b90324c50784d4a8aa2-00693b2eb9
+ status: 404 Not Found
+ code: 404
+ duration: 59.093865ms
+ - id: 60
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 542
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:50:58.839144+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "542"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:06 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 3a8f04bb-21d5-4840-8222-9f001f87d6b9
+ status: 200 OK
+ code: 200
+ duration: 71.960806ms
+ - id: 61
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 69341938-0b62-4ad2-b4f9-75c72e0a6957
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205106Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/exported-snapshot.qcow2
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "0"
+ Content-Type:
+ - application/x-qemu-disk
+ Date:
+ - Thu, 11 Dec 2025 20:51:06 GMT
+ Etag:
+ - '"d41d8cd98f00b204e9800998ecf8427e"'
+ Last-Modified:
+ - Thu, 11 Dec 2025 20:51:03 GMT
+ X-Amz-Id-2:
+ - txg8f3314522aa6439e9b0c-00693b2eba
+ X-Amz-Request-Id:
+ - txg8f3314522aa6439e9b0c-00693b2eba
+ status: 200 OK
+ code: 200
+ duration: 51.194861ms
+ - id: 62
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 59950c2d-47e4-4413-82ba-f963b4b7dd0b
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205106Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/exported-snapshot.qcow2
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "0"
+ Content-Type:
+ - application/x-qemu-disk
+ Date:
+ - Thu, 11 Dec 2025 20:51:06 GMT
+ Etag:
+ - '"d41d8cd98f00b204e9800998ecf8427e"'
+ Last-Modified:
+ - Thu, 11 Dec 2025 20:51:03 GMT
+ X-Amz-Id-2:
+ - txgf68a008ffb804a0db045-00693b2eba
+ X-Amz-Request-Id:
+ - txgf68a008ffb804a0db045-00693b2eba
+ status: 200 OK
+ code: 200
+ duration: 52.25359ms
+ - id: 63
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - d31d2ea9-73fb-4a01-a213-3d9ef8ad8267
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205106Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/exported-snapshot.qcow2?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 75
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "75"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:51:06 GMT
+ X-Amz-Id-2:
+ - txg9e4f9f31f6574010a7d7-00693b2eba
+ X-Amz-Request-Id:
+ - txg9e4f9f31f6574010a7d7-00693b2eba
+ status: 200 OK
+ code: 200
+ duration: 17.377217ms
+ - id: 64
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 8745506a-9b27-4a1b-8638-3235bc2b6386
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205106Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/exported-snapshot.qcow2?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:51:06 GMT
+ X-Amz-Id-2:
+ - txgb2d19bfc10f54795be83-00693b2eba
+ X-Amz-Request-Id:
+ - txgb2d19bfc10f54795be83-00693b2eba
+ status: 200 OK
+ code: 200
+ duration: 72.310143ms
+ - id: 65
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 438d731d-1dcf-4842-b3bc-8a0d8a60f4c3
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205106Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/exported-snapshot.qcow2
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "0"
+ Content-Type:
+ - application/x-qemu-disk
+ Date:
+ - Thu, 11 Dec 2025 20:51:06 GMT
+ Etag:
+ - '"d41d8cd98f00b204e9800998ecf8427e"'
+ Last-Modified:
+ - Thu, 11 Dec 2025 20:51:03 GMT
+ X-Amz-Id-2:
+ - txg06c53add048647499f87-00693b2eba
+ X-Amz-Request-Id:
+ - txg06c53add048647499f87-00693b2eba
+ status: 200 OK
+ code: 200
+ duration: 28.591792ms
+ - id: 66
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 04d2b3ca-a0b7-41cc-8237-856f34fd3566
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205106Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/exported-snapshot.qcow2
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "0"
+ Content-Type:
+ - application/x-qemu-disk
+ Date:
+ - Thu, 11 Dec 2025 20:51:06 GMT
+ Etag:
+ - '"d41d8cd98f00b204e9800998ecf8427e"'
+ Last-Modified:
+ - Thu, 11 Dec 2025 20:51:03 GMT
+ X-Amz-Id-2:
+ - txg4889213e8c2f463db71d-00693b2eba
+ X-Amz-Request-Id:
+ - txg4889213e8c2f463db71d-00693b2eba
+ status: 200 OK
+ code: 200
+ duration: 132.40541ms
+ - id: 67
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 9f11fa42-d691-40b1-bf9d-bea7adc3f327
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205106Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/exported-snapshot.qcow2?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 75
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "75"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:51:06 GMT
+ X-Amz-Id-2:
+ - txge00ad2255ac442a399e5-00693b2eba
+ X-Amz-Request-Id:
+ - txge00ad2255ac442a399e5-00693b2eba
+ status: 200 OK
+ code: 200
+ duration: 18.505237ms
+ - id: 68
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - c20a4a3a-beeb-491a-adca-7902c2ad84ec
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205106Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/exported-snapshot.qcow2?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:51:06 GMT
+ X-Amz-Id-2:
+ - txgab7d4dd588f644298196-00693b2eba
+ X-Amz-Request-Id:
+ - txgab7d4dd588f644298196-00693b2eba
+ status: 200 OK
+ code: 200
+ duration: 79.314646ms
+ - id: 69
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 93f897ad-6e40-402e-bb4f-cdc0da2c081a
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205106Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:51:06 GMT
+ X-Amz-Id-2:
+ - txgd784b63f36584a31a56b-00693b2eba
+ X-Amz-Request-Id:
+ - txgd784b63f36584a31a56b-00693b2eba
+ status: 200 OK
+ code: 200
+ duration: 16.036898ms
+ - id: 70
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ object-lock:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - c8f94ef9-a19b-4a94-889c-aef886db56b8
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205106Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?object-lock=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 330
+ body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxgb20c43c6975546d9b729-00693b2ebatxgb20c43c6975546d9b729-00693b2eba/test-acc-action-instance-export-snap-zone-7138371657452517839
+ headers:
+ Content-Length:
+ - "330"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:06 GMT
+ X-Amz-Id-2:
+ - txgb20c43c6975546d9b729-00693b2eba
+ X-Amz-Request-Id:
+ - txgb20c43c6975546d9b729-00693b2eba
+ status: 404 Not Found
+ code: 404
+ duration: 62.813997ms
+ - id: 71
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2373
+ body: '{"server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-zone", "image": {"id": "0b4b9625-39c0-4ef4-aa6b-c2452287c129", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "9fec48eb-63b2-487c-8e36-e7f92060ebbf", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:20.660756+00:00", "modification_date": "2025-09-12T09:11:20.660756+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "nl-ams-2"}, "volumes": {"0": {"boot": false, "id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:54.361093+00:00", "tags": [], "zone": "nl-ams-2"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:40:78:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:15.576985+00:00", "bootscript": null, "security_group": {"id": "cc023ec3-a266-4a65-a26d-72a78882bfd0", "name": "Default security group"}, "location": {"zone_id": "nl-ams-2", "platform_id": "24", "cluster_id": "2", "hypervisor_id": "401", "node_id": "38"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "nl-ams-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2373"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:06 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 53882a5d-9703-48c5-ba05-cd7fca82cefa
+ status: 200 OK
+ code: 200
+ duration: 129.14377ms
+ - id: 72
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/volumes/5bf64b9c-d770-4dd9-b53c-ad0897a170ae
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 528
+ body: '{"volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:54.361093+00:00", "tags": [], "zone": "nl-ams-2"}}'
+ headers:
+ Content-Length:
+ - "528"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:06 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 43a23ffa-f16d-47b8-be80-65733490bf7a
+ status: 200 OK
+ code: 200
+ duration: 73.459993ms
+ - id: 73
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 314249d2-be9b-4f7b-aa64-41e2037f805c
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205106Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 782
+ body: |-
+
+ test-acc-action-instance-export-snap-zone-71383716574525178391000falseexported-snapshot.qcow22025-12-11T20:51:03.000Z"d41d8cd98f00b204e9800998ecf8427e"0fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552STANDARDCRC32FULL_OBJECT
+ headers:
+ Content-Length:
+ - "782"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:06 GMT
+ X-Amz-Id-2:
+ - txg55d2160c5c3944bbad8f-00693b2eba
+ X-Amz-Request-Id:
+ - txg55d2160c5c3944bbad8f-00693b2eba
+ status: 200 OK
+ code: 200
+ duration: 157.231695ms
+ - id: 74
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 10728602-3689-467e-acba-929873eb0d65
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205106Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 361
+ body: NoSuchTagSetThe TagSet does not existtxgadb1fb14b8234bc9ba60-00693b2ebatxgadb1fb14b8234bc9ba60-00693b2eba/test-acc-action-instance-export-snap-zone-7138371657452517839test-acc-action-instance-export-snap-zone-7138371657452517839
+ headers:
+ Content-Length:
+ - "361"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:06 GMT
+ X-Amz-Id-2:
+ - txgadb1fb14b8234bc9ba60-00693b2eba
+ X-Amz-Request-Id:
+ - txgadb1fb14b8234bc9ba60-00693b2eba
+ status: 404 Not Found
+ code: 404
+ duration: 17.17702ms
+ - id: 75
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 27f02400-dd3e-44dd-8653-b72e7572afbc
+ status: 200 OK
+ code: 200
+ duration: 81.645256ms
+ - id: 76
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ cors:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - ff2b88b9-007c-4f59-886a-38f7b212643a
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205107Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?cors=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 298
+ body: NoSuchCORSConfigurationThe CORS configuration does not existtxgdb7c3de715344735af16-00693b2ebbtxgdb7c3de715344735af16-00693b2ebb/test-acc-action-instance-export-snap-zone-7138371657452517839
+ headers:
+ Content-Length:
+ - "298"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:07 GMT
+ X-Amz-Id-2:
+ - txgdb7c3de715344735af16-00693b2ebb
+ X-Amz-Request-Id:
+ - txgdb7c3de715344735af16-00693b2ebb
+ status: 404 Not Found
+ code: 404
+ duration: 59.647185ms
+ - id: 77
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:07 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - d8183156-02c4-4a3f-94a8-f0ca9eeab050
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 73.002484ms
+ - id: 78
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ versioning:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - f03e1ee7-5d53-4c53-a6d2-c6b030c8ffd0
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205107Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?versioning=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 107
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "107"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:51:07 GMT
+ X-Amz-Id-2:
+ - txg92ad8b7e5b18478da2c2-00693b2ebb
+ X-Amz-Request-Id:
+ - txg92ad8b7e5b18478da2c2-00693b2ebb
+ status: 200 OK
+ code: 200
+ duration: 46.547296ms
+ - id: 79
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ lifecycle:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 579a6d98-c1f7-456b-9c73-f157cd70694e
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205107Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 394
+ body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxgcd78ca9e435741b5a3ec-00693b2ebbtxgcd78ca9e435741b5a3ec-00693b2ebb/test-acc-action-instance-export-snap-zone-7138371657452517839test-acc-action-instance-export-snap-zone-7138371657452517839
+ headers:
+ Content-Length:
+ - "394"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:07 GMT
+ X-Amz-Id-2:
+ - txgcd78ca9e435741b5a3ec-00693b2ebb
+ X-Amz-Request-Id:
+ - txgcd78ca9e435741b5a3ec-00693b2ebb
+ status: 404 Not Found
+ code: 404
+ duration: 56.919279ms
+ - id: 80
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 542
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:50:58.839144+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "542"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - fb8ff3bb-20fa-4cc0-ad89-22ae259e4c9f
+ status: 200 OK
+ code: 200
+ duration: 64.825427ms
+ - id: 81
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - d2ef545c-37a6-4b59-b801-35bcfc3c6d81
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205107Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/exported-snapshot.qcow2
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "0"
+ Content-Type:
+ - application/x-qemu-disk
+ Date:
+ - Thu, 11 Dec 2025 20:51:07 GMT
+ Etag:
+ - '"d41d8cd98f00b204e9800998ecf8427e"'
+ Last-Modified:
+ - Thu, 11 Dec 2025 20:51:03 GMT
+ X-Amz-Id-2:
+ - txg952a74602bea4760b876-00693b2ebb
+ X-Amz-Request-Id:
+ - txg952a74602bea4760b876-00693b2ebb
+ status: 200 OK
+ code: 200
+ duration: 59.630275ms
+ - id: 82
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - f0246c04-fc1b-4724-9648-5a2a018a97c5
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205107Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/exported-snapshot.qcow2
+ method: HEAD
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Accept-Ranges:
+ - bytes
+ Content-Length:
+ - "0"
+ Content-Type:
+ - application/x-qemu-disk
+ Date:
+ - Thu, 11 Dec 2025 20:51:07 GMT
+ Etag:
+ - '"d41d8cd98f00b204e9800998ecf8427e"'
+ Last-Modified:
+ - Thu, 11 Dec 2025 20:51:03 GMT
+ X-Amz-Id-2:
+ - txga415208d2d9246fca87c-00693b2ebb
+ X-Amz-Request-Id:
+ - txga415208d2d9246fca87c-00693b2ebb
+ status: 200 OK
+ code: 200
+ duration: 48.101707ms
+ - id: 83
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 2bd8ae66-5b31-49ba-85fe-1b732de60069
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205107Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/exported-snapshot.qcow2?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 75
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "75"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:51:07 GMT
+ X-Amz-Id-2:
+ - txge8153d0ab5db4e139c68-00693b2ebb
+ X-Amz-Request-Id:
+ - txge8153d0ab5db4e139c68-00693b2ebb
+ status: 200 OK
+ code: 200
+ duration: 17.097691ms
+ - id: 84
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 67ad1a72-c53d-4460-9d61-e373b95287e0
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205107Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/exported-snapshot.qcow2?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:51:07 GMT
+ X-Amz-Id-2:
+ - txg4df2419f93ef48a2801e-00693b2ebb
+ X-Amz-Request-Id:
+ - txg4df2419f93ef48a2801e-00693b2ebb
+ status: 200 OK
+ code: 200
+ duration: 61.695384ms
+ - id: 85
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - e234a2bf-efd1-4016-8000-c5e5c73ed857
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205107Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:51:07 GMT
+ X-Amz-Id-2:
+ - txg1d2f5f9d1fcb47cd986b-00693b2ebb
+ X-Amz-Request-Id:
+ - txg1d2f5f9d1fcb47cd986b-00693b2ebb
+ status: 200 OK
+ code: 200
+ duration: 46.70321ms
+ - id: 86
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 542
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:50:58.839144+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "542"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 066fb595-7305-446c-ac22-f727048748c5
+ status: 200 OK
+ code: 200
+ duration: 62.638888ms
+ - id: 87
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2373
+ body: '{"server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-zone", "image": {"id": "0b4b9625-39c0-4ef4-aa6b-c2452287c129", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "9fec48eb-63b2-487c-8e36-e7f92060ebbf", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:20.660756+00:00", "modification_date": "2025-09-12T09:11:20.660756+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "nl-ams-2"}, "volumes": {"0": {"boot": false, "id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:54.361093+00:00", "tags": [], "zone": "nl-ams-2"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:40:78:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:15.576985+00:00", "bootscript": null, "security_group": {"id": "cc023ec3-a266-4a65-a26d-72a78882bfd0", "name": "Default security group"}, "location": {"zone_id": "nl-ams-2", "platform_id": "24", "cluster_id": "2", "hypervisor_id": "401", "node_id": "38"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "nl-ams-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2373"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 5a785567-8d1b-4130-9f65-c11582f8e883
+ status: 200 OK
+ code: 200
+ duration: 115.261351ms
+ - id: 88
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ object-lock:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 77af1da0-f1ce-40bf-936f-be2ac2790943
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205107Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?object-lock=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 330
+ body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxgeacb0317bb05447f8d5c-00693b2ebbtxgeacb0317bb05447f8d5c-00693b2ebb/test-acc-action-instance-export-snap-zone-7138371657452517839
+ headers:
+ Content-Length:
+ - "330"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:07 GMT
+ X-Amz-Id-2:
+ - txgeacb0317bb05447f8d5c-00693b2ebb
+ X-Amz-Request-Id:
+ - txgeacb0317bb05447f8d5c-00693b2ebb
+ status: 404 Not Found
+ code: 404
+ duration: 120.028089ms
+ - id: 89
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/volumes/5bf64b9c-d770-4dd9-b53c-ad0897a170ae
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 528
+ body: '{"volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:54.361093+00:00", "tags": [], "zone": "nl-ams-2"}}'
+ headers:
+ Content-Length:
+ - "528"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 24032bd1-0cc6-42f2-bc4f-5f43cb7bcbfd
+ status: 200 OK
+ code: 200
+ duration: 102.733327ms
+ - id: 90
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 2100313c-6332-4d5c-9c57-4b56f9a59d41
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205107Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 782
+ body: |-
+
+ test-acc-action-instance-export-snap-zone-71383716574525178391000falseexported-snapshot.qcow22025-12-11T20:51:03.000Z"d41d8cd98f00b204e9800998ecf8427e"0fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552STANDARDCRC32FULL_OBJECT
+ headers:
+ Content-Length:
+ - "782"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:07 GMT
+ X-Amz-Id-2:
+ - txg62da397fd98d4fb2accb-00693b2ebb
+ X-Amz-Request-Id:
+ - txg62da397fd98d4fb2accb-00693b2ebb
+ status: 200 OK
+ code: 200
+ duration: 58.654389ms
+ - id: 91
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 7d604d8f-587c-41a5-937c-2583c83b1bc0
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205107Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 361
+ body: NoSuchTagSetThe TagSet does not existtxg5c9105dd960f4b8585db-00693b2ebbtxg5c9105dd960f4b8585db-00693b2ebb/test-acc-action-instance-export-snap-zone-7138371657452517839test-acc-action-instance-export-snap-zone-7138371657452517839
+ headers:
+ Content-Length:
+ - "361"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:07 GMT
+ X-Amz-Id-2:
+ - txg5c9105dd960f4b8585db-00693b2ebb
+ X-Amz-Request-Id:
+ - txg5c9105dd960f4b8585db-00693b2ebb
+ status: 404 Not Found
+ code: 404
+ duration: 44.623291ms
+ - id: 92
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ cors:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 6149b1ae-d050-494b-9501-a4fc6d6a87ca
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205107Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?cors=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 298
+ body: NoSuchCORSConfigurationThe CORS configuration does not existtxg1fe43f39b75f4815986f-00693b2ebbtxg1fe43f39b75f4815986f-00693b2ebb/test-acc-action-instance-export-snap-zone-7138371657452517839
+ headers:
+ Content-Length:
+ - "298"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:07 GMT
+ X-Amz-Id-2:
+ - txg1fe43f39b75f4815986f-00693b2ebb
+ X-Amz-Request-Id:
+ - txg1fe43f39b75f4815986f-00693b2ebb
+ status: 404 Not Found
+ code: 404
+ duration: 15.30372ms
+ - id: 93
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - f1950975-8367-4891-a168-0e4dad3c5d5a
+ status: 200 OK
+ code: 200
+ duration: 72.53246ms
+ - id: 94
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ versioning:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 6449098b-2e04-4cbb-b643-b4aac9333e62
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205107Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?versioning=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 107
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "107"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:51:07 GMT
+ X-Amz-Id-2:
+ - txg55cc6270bcf041538ee2-00693b2ebb
+ X-Amz-Request-Id:
+ - txg55cc6270bcf041538ee2-00693b2ebb
+ status: 200 OK
+ code: 200
+ duration: 19.088674ms
+ - id: 95
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ lifecycle:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - c15607a8-c07b-4814-b2ad-d1dd4cf52be2
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205107Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 394
+ body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxgb14e0aa1702b4c54885f-00693b2ebbtxgb14e0aa1702b4c54885f-00693b2ebb/test-acc-action-instance-export-snap-zone-7138371657452517839test-acc-action-instance-export-snap-zone-7138371657452517839
+ headers:
+ Content-Length:
+ - "394"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:07 GMT
+ X-Amz-Id-2:
+ - txgb14e0aa1702b4c54885f-00693b2ebb
+ X-Amz-Request-Id:
+ - txgb14e0aa1702b4c54885f-00693b2ebb
+ status: 404 Not Found
+ code: 404
+ duration: 16.126086ms
+ - id: 96
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:07 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 35ed5fea-6682-49bd-9eaf-c1425df725af
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 73.820711ms
+ - id: 97
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 542
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:50:58.839144+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "542"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 5cb31a64-f3b8-4fb4-8449-49cacf3db019
+ status: 200 OK
+ code: 200
+ duration: 63.030023ms
+ - id: 98
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 542
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:50:58.839144+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "542"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:13 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 7dfc5ccf-3414-41fa-8a38-8282bc13487a
+ status: 200 OK
+ code: 200
+ duration: 73.82559ms
+ - id: 99
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 542
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:50:58.839144+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "542"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:18 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 4e514dc7-0f75-4c4a-ac1e-871873d9f740
+ status: 200 OK
+ code: 200
+ duration: 84.230493ms
+ - id: 100
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 542
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:50:58.839144+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "542"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:23 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - bb698eeb-910e-4742-9d26-63270714af9e
+ status: 200 OK
+ code: 200
+ duration: 90.759573ms
+ - id: 101
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 542
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:50:58.839144+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "542"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:28 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - e3b4f911-7773-4bf3-89e4-e92113b2d80b
+ status: 200 OK
+ code: 200
+ duration: 83.941569ms
+ - id: 102
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 542
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:50:58.839144+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "542"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:33 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 84b84368-22d8-47f2-adb1-eda35cb08d7a
+ status: 200 OK
+ code: 200
+ duration: 71.49605ms
+ - id: 103
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 542
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:50:58.839144+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "542"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:38 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 265e764c-91fb-49c4-88d1-177302ae33e2
+ status: 200 OK
+ code: 200
+ duration: 60.838171ms
+ - id: 104
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 542
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:50:58.839144+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "exporting", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "542"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:43 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 368e30c4-c0e7-4014-a6dd-05f488fdd9cc
+ status: 200 OK
+ code: 200
+ duration: 69.908987ms
+ - id: 105
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 542
+ body: '{"snapshot": {"id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f", "name": "tf-snap-compassionate-hoover", "volume_type": "l_ssd", "creation_date": "2025-12-11T20:50:17.078089+00:00", "modification_date": "2025-12-11T20:51:45.469737+00:00", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "size": 10000000000, "state": "available", "base_volume": {"id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish"}, "tags": [], "zone": "nl-ams-2", "error_details": null}}'
+ headers:
+ Content-Length:
+ - "542"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:48 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 1abb7097-c3cb-4c93-ab9a-7711f04bd673
+ status: 200 OK
+ code: 200
+ duration: 93.276489ms
+ - id: 106
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:48 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - fa66aa72-2167-40ba-bc7f-3a724ea35fea
+ status: 204 No Content
+ code: 204
+ duration: 163.618519ms
+ - id: 107
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/snapshots/46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 145
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_snapshot", "resource_id": "46dbcbb2-a5a4-43fa-b43f-1aade8dd0f6f"}'
+ headers:
+ Content-Length:
+ - "145"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:48 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - a1922473-b96a-45b2-92b0-66bb86c36ae8
+ status: 404 Not Found
+ code: 404
+ duration: 49.14173ms
+ - id: 108
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2373
+ body: '{"server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-zone", "image": {"id": "0b4b9625-39c0-4ef4-aa6b-c2452287c129", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "9fec48eb-63b2-487c-8e36-e7f92060ebbf", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:20.660756+00:00", "modification_date": "2025-09-12T09:11:20.660756+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "nl-ams-2"}, "volumes": {"0": {"boot": false, "id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:54.361093+00:00", "tags": [], "zone": "nl-ams-2"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:40:78:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:15.576985+00:00", "bootscript": null, "security_group": {"id": "cc023ec3-a266-4a65-a26d-72a78882bfd0", "name": "Default security group"}, "location": {"zone_id": "nl-ams-2", "platform_id": "24", "cluster_id": "2", "hypervisor_id": "401", "node_id": "38"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "nl-ams-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2373"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:49 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 522e79e9-8450-421f-9cff-690da58c8c4e
+ status: 200 OK
+ code: 200
+ duration: 126.252509ms
+ - id: 109
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2373
+ body: '{"server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-zone", "image": {"id": "0b4b9625-39c0-4ef4-aa6b-c2452287c129", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "9fec48eb-63b2-487c-8e36-e7f92060ebbf", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:20.660756+00:00", "modification_date": "2025-09-12T09:11:20.660756+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "nl-ams-2"}, "volumes": {"0": {"boot": false, "id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:54.361093+00:00", "tags": [], "zone": "nl-ams-2"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:40:78:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:15.576985+00:00", "bootscript": null, "security_group": {"id": "cc023ec3-a266-4a65-a26d-72a78882bfd0", "name": "Default security group"}, "location": {"zone_id": "nl-ams-2", "platform_id": "24", "cluster_id": "2", "hypervisor_id": "401", "node_id": "38"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "nl-ams-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2373"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:49 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 16fc89cb-e171-49df-b042-f3bd1508f363
+ status: 200 OK
+ code: 200
+ duration: 116.158981ms
+ - id: 110
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 22
+ host: api.scaleway.com
+ body: '{"action":"terminate"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 353
+ body: '{"task": {"id": "77b6a9c4-d2bd-45c7-9120-f938855cba2b", "description": "server_terminate", "status": "pending", "href_from": "/servers/5c81a78d-3066-44df-b410-9020da52353d/action", "href_result": "/servers/5c81a78d-3066-44df-b410-9020da52353d", "started_at": "2025-12-11T20:51:49.361025+00:00", "terminated_at": null, "progress": 0, "zone": "nl-ams-2"}}'
+ headers:
+ Content-Length:
+ - "353"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:49 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/nl-ams-2/tasks/77b6a9c4-d2bd-45c7-9120-f938855cba2b
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 5614fbb4-6eaf-426f-94f9-067b1d220d05
+ status: 202 Accepted
+ code: 202
+ duration: 262.336615ms
+ - id: 111
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2336
+ body: '{"server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-tf-action-instance-export-snapshot-zone", "image": {"id": "0b4b9625-39c0-4ef4-aa6b-c2452287c129", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "9fec48eb-63b2-487c-8e36-e7f92060ebbf", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:20.660756+00:00", "modification_date": "2025-09-12T09:11:20.660756+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "nl-ams-2"}, "volumes": {"0": {"boot": false, "id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "5c81a78d-3066-44df-b410-9020da52353d", "name": "test-tf-action-instance-export-snapshot-zone"}, "size": 10000000000, "state": "available", "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:50:54.361093+00:00", "tags": [], "zone": "nl-ams-2"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:40:78:85", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T20:50:05.190476+00:00", "modification_date": "2025-12-11T20:51:49.187106+00:00", "bootscript": null, "security_group": {"id": "cc023ec3-a266-4a65-a26d-72a78882bfd0", "name": "Default security group"}, "location": {"zone_id": "nl-ams-2", "platform_id": "24", "cluster_id": "2", "hypervisor_id": "401", "node_id": "38"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "nl-ams-2", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2336"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:49 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 0ee4cd49-9c8d-45fd-89da-3861daf55476
+ status: 200 OK
+ code: 200
+ duration: 121.147887ms
+ - id: 112
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/servers/5c81a78d-3066-44df-b410-9020da52353d
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "5c81a78d-3066-44df-b410-9020da52353d"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:54 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 9ef6fe69-e58d-40ce-91da-9ef49d2537f6
+ status: 404 Not Found
+ code: 404
+ duration: 72.335075ms
+ - id: 113
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/volumes/5bf64b9c-d770-4dd9-b53c-ad0897a170ae
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "5bf64b9c-d770-4dd9-b53c-ad0897a170ae"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:54 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - 5ce0bb54-4b8f-4571-ac89-ab6dce487e19
+ status: 404 Not Found
+ code: 404
+ duration: 43.979728ms
+ - id: 114
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/nl-ams-2/volumes/5bf64b9c-d770-4dd9-b53c-ad0897a170ae
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 127
+ body: '{"message":"resource is not found","resource":"volume","resource_id":"5bf64b9c-d770-4dd9-b53c-ad0897a170ae","type":"not_found"}'
+ headers:
+ Content-Length:
+ - "127"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 20:51:54 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ X-Request-Id:
+ - ec3c5d4e-d21d-4c44-9350-146d1b8efbf9
+ status: 404 Not Found
+ code: 404
+ duration: 35.889576ms
+ - id: 115
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - db73d5b8-c99b-4b43-ae79-4282607cdb16
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205154Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 710
+ body: |-
+
+ test-acc-action-instance-export-snap-zone-71383716574525178391000falseexported-snapshot.qcow22025-12-11T20:51:44.000Z"95b6c5a5c9ab2a00c00fd6e946c58417-19"2467233792fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552STANDARD
+ headers:
+ Content-Length:
+ - "710"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:54 GMT
+ X-Amz-Id-2:
+ - txg282cbbf6e99f428cb0e1-00693b2eea
+ X-Amz-Request-Id:
+ - txg282cbbf6e99f428cb0e1-00693b2eea
+ status: 200 OK
+ code: 200
+ duration: 46.834814ms
+ - id: 116
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ x-id:
+ - DeleteObject
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 215a9f34-c9ae-459b-b52f-c5b9d9f0a535
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205154Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/exported-snapshot.qcow2?x-id=DeleteObject
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Date:
+ - Thu, 11 Dec 2025 20:51:54 GMT
+ X-Amz-Id-2:
+ - txg112e90871eb345068dd4-00693b2eea
+ X-Amz-Request-Id:
+ - txg112e90871eb345068dd4-00693b2eea
+ status: 204 No Content
+ code: 204
+ duration: 1.082881542s
+ - id: 117
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ acl:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 99d8e4a1-dd3f-4b1b-91cc-7af4766d9b82
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205156Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?acl=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 698
+ body: |-
+
+ fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL
+ headers:
+ Content-Length:
+ - "698"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:51:56 GMT
+ X-Amz-Id-2:
+ - txg619bed6923ac44d9aed8-00693b2eec
+ X-Amz-Request-Id:
+ - txg619bed6923ac44d9aed8-00693b2eec
+ status: 200 OK
+ code: 200
+ duration: 48.754602ms
+ - id: 118
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ object-lock:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 0943414f-b982-4752-bcd7-a99e45b93638
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205156Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?object-lock=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 330
+ body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg4e80ab9eccfc48b48740-00693b2eectxg4e80ab9eccfc48b48740-00693b2eec/test-acc-action-instance-export-snap-zone-7138371657452517839
+ headers:
+ Content-Length:
+ - "330"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:56 GMT
+ X-Amz-Id-2:
+ - txg4e80ab9eccfc48b48740-00693b2eec
+ X-Amz-Request-Id:
+ - txg4e80ab9eccfc48b48740-00693b2eec
+ status: 404 Not Found
+ code: 404
+ duration: 15.792929ms
+ - id: 119
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - e9a8d994-3d70-4e38-b501-e73e0d05e890
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205156Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 287
+ body: |-
+
+ test-acc-action-instance-export-snap-zone-71383716574525178391000false
+ headers:
+ Content-Length:
+ - "287"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:56 GMT
+ X-Amz-Id-2:
+ - txg34547fe1d2504658903e-00693b2eec
+ X-Amz-Request-Id:
+ - txg34547fe1d2504658903e-00693b2eec
+ status: 200 OK
+ code: 200
+ duration: 26.47349ms
+ - id: 120
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ tagging:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - c37f54c6-62f6-4e12-bbde-9941b9a6da87
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205156Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?tagging=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 361
+ body: NoSuchTagSetThe TagSet does not existtxg5e2d1621db024139b2a0-00693b2eectxg5e2d1621db024139b2a0-00693b2eec/test-acc-action-instance-export-snap-zone-7138371657452517839test-acc-action-instance-export-snap-zone-7138371657452517839
+ headers:
+ Content-Length:
+ - "361"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:56 GMT
+ X-Amz-Id-2:
+ - txg5e2d1621db024139b2a0-00693b2eec
+ X-Amz-Request-Id:
+ - txg5e2d1621db024139b2a0-00693b2eec
+ status: 404 Not Found
+ code: 404
+ duration: 14.792408ms
+ - id: 121
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ cors:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 2e93d1b0-ce07-42fa-ba16-2673fbb499d7
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205156Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?cors=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 298
+ body: NoSuchCORSConfigurationThe CORS configuration does not existtxg0f684b73dedf48059af5-00693b2eectxg0f684b73dedf48059af5-00693b2eec/test-acc-action-instance-export-snap-zone-7138371657452517839
+ headers:
+ Content-Length:
+ - "298"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:56 GMT
+ X-Amz-Id-2:
+ - txg0f684b73dedf48059af5-00693b2eec
+ X-Amz-Request-Id:
+ - txg0f684b73dedf48059af5-00693b2eec
+ status: 404 Not Found
+ code: 404
+ duration: 15.605417ms
+ - id: 122
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ versioning:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - 7165540f-6125-4773-ba47-8e00727e3a3c
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205156Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?versioning=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 107
+ body: |-
+
+
+ headers:
+ Content-Length:
+ - "107"
+ Content-Type:
+ - text/xml; charset=utf-8
+ Date:
+ - Thu, 11 Dec 2025 20:51:56 GMT
+ X-Amz-Id-2:
+ - txgd23f277be6954812ac3c-00693b2eec
+ X-Amz-Request-Id:
+ - txgd23f277be6954812ac3c-00693b2eec
+ status: 200 OK
+ code: 200
+ duration: 147.924234ms
+ - id: 123
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ form:
+ lifecycle:
+ - ""
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - f79ecf50-da6a-49a6-ade9-c957c97420e1
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205156Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/?lifecycle=
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 394
+ body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxgc30962962d4b45bf8a3e-00693b2eectxgc30962962d4b45bf8a3e-00693b2eec/test-acc-action-instance-export-snap-zone-7138371657452517839test-acc-action-instance-export-snap-zone-7138371657452517839
+ headers:
+ Content-Length:
+ - "394"
+ Content-Type:
+ - application/xml
+ Date:
+ - Thu, 11 Dec 2025 20:51:56 GMT
+ X-Amz-Id-2:
+ - txgc30962962d4b45bf8a3e-00693b2eec
+ X-Amz-Request-Id:
+ - txgc30962962d4b45bf8a3e-00693b2eec
+ status: 404 Not Found
+ code: 404
+ duration: 20.190142ms
+ - id: 124
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud
+ headers:
+ Accept-Encoding:
+ - identity
+ Amz-Sdk-Invocation-Id:
+ - b77d69cc-75e4-4332-bf22-f65854bb195d
+ Amz-Sdk-Request:
+ - attempt=1; max=3
+ User-Agent:
+ - aws-sdk-go-v2/1.40.1 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.93.0 m/E,e
+ X-Amz-Content-Sha256:
+ - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+ X-Amz-Date:
+ - 20251211T205156Z
+ url: https://test-acc-action-instance-export-snap-zone-7138371657452517839.s3.nl-ams.scw.cloud/
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Date:
+ - Thu, 11 Dec 2025 20:51:56 GMT
+ X-Amz-Id-2:
+ - txg24bfc8adc8b04af7aa90-00693b2eec
+ X-Amz-Request-Id:
+ - txg24bfc8adc8b04af7aa90-00693b2eec
+ status: 204 No Content
+ code: 204
+ duration: 233.021583ms
diff --git a/internal/services/instance/testdata/action-server-backup.cassette.yaml b/internal/services/instance/testdata/action-server-backup.cassette.yaml
new file mode 100644
index 000000000..426aab767
--- /dev/null
+++ b/internal/services/instance/testdata/action-server-backup.cassette.yaml
@@ -0,0 +1,1836 @@
+---
+version: 2
+interactions:
+ - id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ page:
+ - "1"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 39202
+ body: '{"servers": {"BASIC2-A16C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.89, "hourly_price": 0.2067, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 201.19, "hourly_price": 0.2756, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A2C-4G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 16.79, "hourly_price": 0.023, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 25.19, "hourly_price": 0.0345, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 50.3, "hourly_price": 0.0689, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A4C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 37.74, "hourly_price": 0.0517, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A8C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.48, "hourly_price": 0.1034, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "BASIC2-A8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 100.59, "hourly_price": 0.1378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 30.66, "hourly_price": 0.042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.454, "hourly_price": 0.0198, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.424, "hourly_price": 0.0088, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 46.5734, "hourly_price": 0.06378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 554.07, "hourly_price": 0.759, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 274.48, "hourly_price": 0.376, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 136.51, "hourly_price": 0.187, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1197.93, "hourly_price": 1.641, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 66.43, "hourly_price": 0.091, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}}}'
+ headers:
+ Content-Length:
+ - "39202"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:18:35 GMT
+ Link:
+ - ; rel="next",; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 9a6405f8-674f-4bf7-9da0-9fefb9499fea
+ X-Total-Count:
+ - "76"
+ status: 200 OK
+ code: 200
+ duration: 88.200527ms
+ - id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ page:
+ - "2"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20510
+ body: '{"servers": {"POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 891.33, "hourly_price": 1.221, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 0.1095, "hourly_price": 0.00015, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}'
+ headers:
+ Content-Length:
+ - "20510"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:18:35 GMT
+ Link:
+ - ; rel="first",; rel="previous",; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - d4c70c9a-c6db-489f-a2f0-26bbb73b7845
+ X-Total-Count:
+ - "76"
+ status: 200 OK
+ code: 200
+ duration: 61.336013ms
+ - id: 2
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ image_label:
+ - ubuntu_jammy
+ order_by:
+ - type_asc
+ type:
+ - instance_local
+ zone:
+ - fr-par-1
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_local&zone=fr-par-1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 397
+ body: '{"local_images":[{"id":"ec31d73d-ca36-4536-adf4-0feb76d30379","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"label":"ubuntu_jammy","type":"instance_local"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "397"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:18:35 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - de22cd95-70f7-4dfb-8b38-18a504ebae90
+ status: 200 OK
+ code: 200
+ duration: 77.713582ms
+ - id: 3
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 289
+ host: api.scaleway.com
+ body: '{"name":"test-terraform-action-server-backup","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"ec31d73d-ca36-4536-adf4-0feb76d30379","volumes":{"0":{"boot":false,"size":15000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2191
+ body: '{"server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-backup", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "available", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:35.985346+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9b:fb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:35.985346+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2191"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:18:36 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - e7445160-2e7c-4650-a2f8-7e066315c5ed
+ status: 201 Created
+ code: 201
+ duration: 342.691344ms
+ - id: 4
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2191
+ body: '{"server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-backup", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "available", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:35.985346+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9b:fb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:35.985346+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2191"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:18:36 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - b981e26d-0ba5-4ed4-a959-2885aeb8c883
+ status: 200 OK
+ code: 200
+ duration: 81.202411ms
+ - id: 5
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2191
+ body: '{"server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-backup", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "available", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:35.985346+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9b:fb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:35.985346+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2191"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:18:36 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 03019f1e-bce8-484f-a9cc-89b164e36fa5
+ status: 200 OK
+ code: 200
+ duration: 87.320363ms
+ - id: 6
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 20
+ host: api.scaleway.com
+ body: '{"action":"poweron"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 357
+ body: '{"task": {"id": "2031434b-0999-4e30-b70b-ead1bc51eabe", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc/action", "href_result": "/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc", "started_at": "2025-12-11T21:18:36.596305+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "357"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:18:36 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2031434b-0999-4e30-b70b-ead1bc51eabe
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 40f8e444-0641-45f8-aab4-8f2da7d92602
+ status: 202 Accepted
+ code: 202
+ duration: 401.450901ms
+ - id: 7
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2213
+ body: '{"server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-backup", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "available", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:35.985346+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9b:fb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:36.398468+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2213"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:18:36 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 79c2dd26-bae1-4fde-a692-a83a56dc33d6
+ status: 200 OK
+ code: 200
+ duration: 123.721648ms
+ - id: 8
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2316
+ body: '{"server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-backup", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "available", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:35.985346+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9b:fb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:36.398468+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "401", "node_id": "12"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2316"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:18:42 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 6092f8f1-b3ba-4354-b81f-6261492e3449
+ status: 200 OK
+ code: 200
+ duration: 113.326695ms
+ - id: 9
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2347
+ body: '{"server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-backup", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "available", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:35.985346+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9b:fb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:46.743292+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "401", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2347"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:18:47 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 914f5699-d3f9-4657-aa40-6165842b22ae
+ status: 200 OK
+ code: 200
+ duration: 89.061845ms
+ - id: 10
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2347
+ body: '{"server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-backup", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "available", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:35.985346+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9b:fb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:46.743292+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "401", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2347"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:18:47 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 23649ee6-fdf3-4658-90d8-43d6cab7a388
+ status: 200 OK
+ code: 200
+ duration: 85.254458ms
+ - id: 11
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/62025eb3-d859-4193-9abe-cadd27f3354e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 519
+ body: '{"volume": {"id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "available", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:35.985346+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "519"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:18:47 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - ea26352f-24ca-4481-844e-07543e25e740
+ status: 200 OK
+ code: 200
+ duration: 66.780416ms
+ - id: 12
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:18:47 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - a01f7c35-b7d2-45fd-a152-4248cf9ae15d
+ status: 200 OK
+ code: 200
+ duration: 73.490441ms
+ - id: 13
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:18:47 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 2bebda42-c424-499f-a9d1-cb232bbf992a
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 59.369754ms
+ - id: 14
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 19
+ host: api.scaleway.com
+ body: '{"action":"backup"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 351
+ body: '{"task": {"id": "c1992e49-d9c8-42e9-9906-643015a8805c", "description": "instance_backup", "status": "pending", "href_from": "/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc/action", "href_result": "/images/7b5af782-74b7-44d0-a5cc-c3811ade5044", "started_at": "2025-12-11T21:18:47.653359+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "351"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:18:47 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c1992e49-d9c8-42e9-9906-643015a8805c
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 23cb4f98-ff8a-4d54-a111-93db4c78ae73
+ status: 202 Accepted
+ code: 202
+ duration: 271.979167ms
+ - id: 15
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2290
+ body: '{"server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-backup", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "snapshotting", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:47.437068+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9b:fb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:46.743292+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "401", "node_id": "12"}, "maintenances": [], "allowed_actions": [], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2290"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:18:47 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 93f129c3-7c54-4140-84e2-47c5567bdc6f
+ status: 200 OK
+ code: 200
+ duration: 72.797839ms
+ - id: 16
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/62025eb3-d859-4193-9abe-cadd27f3354e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 522
+ body: '{"volume": {"id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "snapshotting", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:47.437068+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "522"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:18:47 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 12431582-4443-457c-8c06-09cea9c8ca7f
+ status: 200 OK
+ code: 200
+ duration: 50.619253ms
+ - id: 17
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/62025eb3-d859-4193-9abe-cadd27f3354e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 522
+ body: '{"volume": {"id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "snapshotting", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:47.437068+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "522"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:18:52 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 93be1cf7-f94a-4de9-9b2e-965c1f381242
+ status: 200 OK
+ code: 200
+ duration: 49.909018ms
+ - id: 18
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/62025eb3-d859-4193-9abe-cadd27f3354e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 522
+ body: '{"volume": {"id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "snapshotting", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:47.437068+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "522"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:18:57 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 10b109b6-d796-4a62-9f10-d4a34d307974
+ status: 200 OK
+ code: 200
+ duration: 56.775466ms
+ - id: 19
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/62025eb3-d859-4193-9abe-cadd27f3354e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 522
+ body: '{"volume": {"id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "snapshotting", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:47.437068+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "522"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:02 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - e5c620aa-135e-40ac-81fc-9ef9189fcfa8
+ status: 200 OK
+ code: 200
+ duration: 62.858511ms
+ - id: 20
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/62025eb3-d859-4193-9abe-cadd27f3354e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 522
+ body: '{"volume": {"id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "snapshotting", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:47.437068+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "522"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - a6559316-ef20-4947-baf2-33666f566cc3
+ status: 200 OK
+ code: 200
+ duration: 61.95953ms
+ - id: 21
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/62025eb3-d859-4193-9abe-cadd27f3354e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 522
+ body: '{"volume": {"id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "snapshotting", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:47.437068+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "522"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:13 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 3638a155-8ba8-4f79-8db4-af2cd7325523
+ status: 200 OK
+ code: 200
+ duration: 56.771007ms
+ - id: 22
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/62025eb3-d859-4193-9abe-cadd27f3354e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 522
+ body: '{"volume": {"id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "snapshotting", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:47.437068+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "522"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:18 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 1c185f6f-b319-4a45-801a-d0b7e1319d94
+ status: 200 OK
+ code: 200
+ duration: 63.192597ms
+ - id: 23
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/62025eb3-d859-4193-9abe-cadd27f3354e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 522
+ body: '{"volume": {"id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "snapshotting", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:47.437068+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "522"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:23 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 3e0c574f-75c3-4662-8ab5-613a92dbc0f7
+ status: 200 OK
+ code: 200
+ duration: 62.616463ms
+ - id: 24
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/62025eb3-d859-4193-9abe-cadd27f3354e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 522
+ body: '{"volume": {"id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "snapshotting", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:47.437068+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "522"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:28 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 73e9d0bc-057e-4ed4-aa94-e60467093847
+ status: 200 OK
+ code: 200
+ duration: 67.330886ms
+ - id: 25
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/62025eb3-d859-4193-9abe-cadd27f3354e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 522
+ body: '{"volume": {"id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "snapshotting", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:47.437068+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "522"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:33 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - e063f304-7bf7-4487-afd5-f9724243d597
+ status: 200 OK
+ code: 200
+ duration: 75.488641ms
+ - id: 26
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/62025eb3-d859-4193-9abe-cadd27f3354e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 522
+ body: '{"volume": {"id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "snapshotting", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:47.437068+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "522"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:38 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 04292060-4131-494f-8283-26f1db024d55
+ status: 200 OK
+ code: 200
+ duration: 73.266243ms
+ - id: 27
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/62025eb3-d859-4193-9abe-cadd27f3354e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 522
+ body: '{"volume": {"id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "snapshotting", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:47.437068+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "522"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:43 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 794b24bc-ba5f-4704-a457-777c93442dd2
+ status: 200 OK
+ code: 200
+ duration: 75.623413ms
+ - id: 28
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/62025eb3-d859-4193-9abe-cadd27f3354e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 522
+ body: '{"volume": {"id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "snapshotting", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:47.437068+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "522"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:48 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - d4bfbae1-7c67-4000-a175-cfca97c643b1
+ status: 200 OK
+ code: 200
+ duration: 67.487929ms
+ - id: 29
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/62025eb3-d859-4193-9abe-cadd27f3354e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 519
+ body: '{"volume": {"id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "available", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:19:52.388873+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "519"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:53 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 3fb1af9b-8ed7-4761-8913-69dfcd331572
+ status: 200 OK
+ code: 200
+ duration: 75.995593ms
+ - id: 30
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2347
+ body: '{"server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-backup", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "available", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:19:52.388873+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9b:fb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:46.743292+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "401", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2347"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:54 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - e35fc910-1495-4e78-a5c7-4c64a3d5d104
+ status: 200 OK
+ code: 200
+ duration: 96.179885ms
+ - id: 31
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/62025eb3-d859-4193-9abe-cadd27f3354e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 519
+ body: '{"volume": {"id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "available", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:19:52.388873+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "519"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:54 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 84bc4855-bc1c-4e95-874a-96a669b1328c
+ status: 200 OK
+ code: 200
+ duration: 76.801937ms
+ - id: 32
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:54 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 49968eca-9a82-4341-9a84-7226ce8eba31
+ status: 200 OK
+ code: 200
+ duration: 72.379353ms
+ - id: 33
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:54 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 3da58094-6459-43d4-8d4d-0fd0acca693b
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 58.545548ms
+ - id: 34
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2347
+ body: '{"server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-backup", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "available", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:19:52.388873+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9b:fb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:46.743292+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "401", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2347"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:54 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 4cf16923-d410-4d18-83ab-842923181ace
+ status: 200 OK
+ code: 200
+ duration: 84.267372ms
+ - id: 35
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/62025eb3-d859-4193-9abe-cadd27f3354e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 519
+ body: '{"volume": {"id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "available", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:19:52.388873+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "519"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:54 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 3adc9560-506a-4cd9-a349-b77bc605aa98
+ status: 200 OK
+ code: 200
+ duration: 71.336383ms
+ - id: 36
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:54 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 9137c1b0-4d14-43d3-a719-6d4013eefc2d
+ status: 200 OK
+ code: 200
+ duration: 57.029247ms
+ - id: 37
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:54 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 3baa4b80-3fa5-4411-91db-105b7eb089e6
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 76.639122ms
+ - id: 38
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2347
+ body: '{"server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-backup", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "available", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:19:52.388873+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9b:fb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:46.743292+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "401", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2347"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:54 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 9246893b-e2d6-438b-9588-0ac8c644b099
+ status: 200 OK
+ code: 200
+ duration: 93.474821ms
+ - id: 39
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ name:
+ - image_test-terraform-action-server-backup
+ page:
+ - "1"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images?name=image_test-terraform-action-server-backup&page=1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 725
+ body: '{"images": [{"id": "7b5af782-74b7-44d0-a5cc-c3811ade5044", "name": "image_test-terraform-action-server-backup_2025-12-11_21-18", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "root_volume": {"id": "9eeed2d5-2db4-46aa-82a9-2170e6d26b54", "name": "image_test-terraform-action-server-backup_2025-12-11_21-18_snap_0", "volume_type": "l_ssd", "size": 15000000000}, "extra_volumes": {}, "public": false, "arch": "x86_64", "creation_date": "2025-12-11T21:18:47.437068+00:00", "modification_date": "2025-12-11T21:18:47.437068+00:00", "default_bootscript": null, "from_server": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "state": "available", "tags": [], "zone": "fr-par-1"}]}'
+ headers:
+ Content-Length:
+ - "725"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:55 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - d0d647eb-e557-445b-a520-454a3b43ff53
+ X-Total-Count:
+ - "1"
+ status: 200 OK
+ code: 200
+ duration: 354.270342ms
+ - id: 40
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2347
+ body: '{"server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-backup", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "available", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:19:52.388873+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9b:fb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:46.743292+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "401", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2347"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:55 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 9a03388d-6b4d-4091-b1dd-56d315401450
+ status: 200 OK
+ code: 200
+ duration: 88.033261ms
+ - id: 41
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/62025eb3-d859-4193-9abe-cadd27f3354e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 519
+ body: '{"volume": {"id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "available", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:19:52.388873+00:00", "tags": [], "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "519"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:55 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - ba72cc74-ac80-4079-8bbd-2c981db627b9
+ status: 200 OK
+ code: 200
+ duration: 40.340665ms
+ - id: 42
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:55 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - d3d00365-63de-4a3e-8b72-e75ae3795462
+ status: 200 OK
+ code: 200
+ duration: 56.550337ms
+ - id: 43
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:55 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 4b65a0d6-6125-4a56-9104-3a7e029f2c23
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 74.239611ms
+ - id: 44
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2347
+ body: '{"server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-backup", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "available", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:19:52.388873+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9b:fb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:46.743292+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "401", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2347"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:55 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 6ae41c38-fdc8-4f7f-a860-6c489f897906
+ status: 200 OK
+ code: 200
+ duration: 83.101931ms
+ - id: 45
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2347
+ body: '{"server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-backup", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "available", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:19:52.388873+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9b:fb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:18:46.743292+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "401", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2347"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:55 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - cb3bf9fd-3f69-409e-b4c9-d220f0543063
+ status: 200 OK
+ code: 200
+ duration: 100.110354ms
+ - id: 46
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 22
+ host: api.scaleway.com
+ body: '{"action":"terminate"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 353
+ body: '{"task": {"id": "5d7df3b9-56cf-4023-bed9-d3ca5545427e", "description": "server_terminate", "status": "pending", "href_from": "/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc/action", "href_result": "/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc", "started_at": "2025-12-11T21:19:56.267324+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "353"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:56 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5d7df3b9-56cf-4023-bed9-d3ca5545427e
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 76953ef4-ff40-4c73-821c-d2f91759e291
+ status: 202 Accepted
+ code: 202
+ duration: 409.073133ms
+ - id: 47
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2310
+ body: '{"server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-backup", "image": {"id": "ec31d73d-ca36-4536-adf4-0feb76d30379", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "1973043b-32c4-4d52-baf4-5c99b42b4e39", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:46.109401+00:00", "modification_date": "2025-09-12T09:11:46.109401+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "62025eb3-d859-4193-9abe-cadd27f3354e", "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "l_ssd", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "name": "test-terraform-action-server-backup"}, "size": 15000000000, "state": "available", "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:19:52.388873+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:9b:fb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:18:35.985346+00:00", "modification_date": "2025-12-11T21:19:55.928897+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": "401", "node_id": "12"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "2310"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:19:56 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 831b210b-5f5e-4c3b-a4d9-b14cf40988be
+ status: 200 OK
+ code: 200
+ duration: 94.742403ms
+ - id: 48
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "83866baa-1a34-4858-b6f5-fafd1480b8fc"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:20:01 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 225fd7d1-44c9-460a-80d4-1ceee3123057
+ status: 404 Not Found
+ code: 404
+ duration: 47.056159ms
+ - id: 49
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/62025eb3-d859-4193-9abe-cadd27f3354e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "62025eb3-d859-4193-9abe-cadd27f3354e"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:20:01 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 881bb8b4-4005-4503-a643-96fc53a1f5fd
+ status: 404 Not Found
+ code: 404
+ duration: 33.528549ms
+ - id: 50
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/62025eb3-d859-4193-9abe-cadd27f3354e
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 127
+ body: '{"message":"resource is not found","resource":"volume","resource_id":"62025eb3-d859-4193-9abe-cadd27f3354e","type":"not_found"}'
+ headers:
+ Content-Length:
+ - "127"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:20:01 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - c2dc58c1-ac60-4fc8-8394-b41ed1fdec64
+ status: 404 Not Found
+ code: 404
+ duration: 32.332922ms
+ - id: 51
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83866baa-1a34-4858-b6f5-fafd1480b8fc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "83866baa-1a34-4858-b6f5-fafd1480b8fc"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:20:01 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - d696451e-eb1c-41e2-bae1-2b7b4580d15e
+ status: 404 Not Found
+ code: 404
+ duration: 79.098714ms
+ - id: 52
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ name:
+ - image_test-terraform-action-server-backup
+ page:
+ - "1"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images?name=image_test-terraform-action-server-backup&page=1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 725
+ body: '{"images": [{"id": "7b5af782-74b7-44d0-a5cc-c3811ade5044", "name": "image_test-terraform-action-server-backup_2025-12-11_21-18", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "root_volume": {"id": "9eeed2d5-2db4-46aa-82a9-2170e6d26b54", "name": "image_test-terraform-action-server-backup_2025-12-11_21-18_snap_0", "volume_type": "l_ssd", "size": 15000000000}, "extra_volumes": {}, "public": false, "arch": "x86_64", "creation_date": "2025-12-11T21:18:47.437068+00:00", "modification_date": "2025-12-11T21:18:47.437068+00:00", "default_bootscript": null, "from_server": "83866baa-1a34-4858-b6f5-fafd1480b8fc", "state": "available", "tags": [], "zone": "fr-par-1"}]}'
+ headers:
+ Content-Length:
+ - "725"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:20:01 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 224634fc-4b64-41b4-aaef-948484cdc95f
+ X-Total-Count:
+ - "1"
+ status: 200 OK
+ code: 200
+ duration: 355.869063ms
+ - id: 53
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/7b5af782-74b7-44d0-a5cc-c3811ade5044
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:20:02 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - cbb96b12-7776-4969-a811-275ab0f0b9e9
+ status: 204 No Content
+ code: 204
+ duration: 354.322064ms
+ - id: 54
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9eeed2d5-2db4-46aa-82a9-2170e6d26b54
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:20:02 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 511edbae-1793-4a8e-8979-0460ca29f891
+ status: 204 No Content
+ code: 204
+ duration: 141.360307ms
diff --git a/internal/services/instance/testdata/action-server-basic.cassette.yaml b/internal/services/instance/testdata/action-server-basic.cassette.yaml
index cf48912c3..c9ec3960a 100644
--- a/internal/services/instance/testdata/action-server-basic.cassette.yaml
+++ b/internal/services/instance/testdata/action-server-basic.cassette.yaml
@@ -1,1661 +1,1693 @@
---
version: 2
interactions:
-- id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- form:
- page:
- - "1"
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.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
- content_length: 39220
- body: "{\"servers\": {\"BASIC2-A16C-32G\": {\"alt_names\": [], \"arch\": \"arm64\", \"ncpus\": 16, \"ram\": 34359738368, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 150.89, \"hourly_price\": 0.2067, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 1600000000, \"sum_internet_bandwidth\": 1600000000, \"interfaces\": [{\"internal_bandwidth\": 1600000000, \"internet_bandwidth\": 1600000000}]}, \"block_bandwidth\": 503316480, \"end_of_service\": false}, \"BASIC2-A16C-64G\": {\"alt_names\": [], \"arch\": \"arm64\", \"ncpus\": 16, \"ram\": 68719476736, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 201.19, \"hourly_price\": 0.2756, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 1600000000, \"sum_internet_bandwidth\": 1600000000, \"interfaces\": [{\"internal_bandwidth\": 1600000000, \"internet_bandwidth\": 1600000000}]}, \"block_bandwidth\": 503316480, \"end_of_service\": false}, \"BASIC2-A2C-4G\": {\"alt_names\": [], \"arch\": \"arm64\", \"ncpus\": 2, \"ram\": 4294967296, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 16.79, \"hourly_price\": 0.023, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 200000000, \"sum_internet_bandwidth\": 200000000, \"interfaces\": [{\"internal_bandwidth\": 200000000, \"internet_bandwidth\": 200000000}]}, \"block_bandwidth\": 83886080, \"end_of_service\": false}, \"BASIC2-A2C-8G\": {\"alt_names\": [], \"arch\": \"arm64\", \"ncpus\": 2, \"ram\": 8589934592, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 25.19, \"hourly_price\": 0.0345, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 200000000, \"sum_internet_bandwidth\": 200000000, \"interfaces\": [{\"internal_bandwidth\": 200000000, \"internet_bandwidth\": 200000000}]}, \"block_bandwidth\": 83886080, \"end_of_service\": false}, \"BASIC2-A4C-16G\": {\"alt_names\": [], \"arch\": \"arm64\", \"ncpus\": 4, \"ram\": 17179869184, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 50.3, \"hourly_price\": 0.0689, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 400000000, \"sum_internet_bandwidth\": 400000000, \"interfaces\": [{\"internal_bandwidth\": 400000000, \"internet_bandwidth\": 400000000}]}, \"block_bandwidth\": 125829120, \"end_of_service\": false}, \"BASIC2-A4C-8G\": {\"alt_names\": [], \"arch\": \"arm64\", \"ncpus\": 4, \"ram\": 8589934592, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 37.74, \"hourly_price\": 0.0517, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 400000000, \"sum_internet_bandwidth\": 400000000, \"interfaces\": [{\"internal_bandwidth\": 400000000, \"internet_bandwidth\": 400000000}]}, \"block_bandwidth\": 125829120, \"end_of_service\": false}, \"BASIC2-A8C-16G\": {\"alt_names\": [], \"arch\": \"arm64\", \"ncpus\": 8, \"ram\": 17179869184, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 75.48, \"hourly_price\": 0.1034, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 800000000, \"sum_internet_bandwidth\": 800000000, \"interfaces\": [{\"internal_bandwidth\": 800000000, \"internet_bandwidth\": 800000000}]}, \"block_bandwidth\": 251658240, \"end_of_service\": false}, \"BASIC2-A8C-32G\": {\"alt_names\": [], \"arch\": \"arm64\", \"ncpus\": 8, \"ram\": 34359738368, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 100.59, \"hourly_price\": 0.1378, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 800000000, \"sum_internet_bandwidth\": 800000000, \"interfaces\": [{\"internal_bandwidth\": 800000000, \"internet_bandwidth\": 800000000}]}, \"block_bandwidth\": 251658240, \"end_of_service\": false}, \"COPARM1-16C-64G\": {\"alt_names\": [], \"arch\": \"arm64\", \"ncpus\": 16, \"ram\": 68719476736, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 252.14, \"hourly_price\": 0.3454, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 1600000000, \"sum_internet_bandwidth\": 1600000000, \"interfaces\": [{\"internal_bandwidth\": 1600000000, \"internet_bandwidth\": 1600000000}]}, \"block_bandwidth\": 671088640, \"end_of_service\": false}, \"COPARM1-2C-8G\": {\"alt_names\": [], \"arch\": \"arm64\", \"ncpus\": 2, \"ram\": 8589934592, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 31.1, \"hourly_price\": 0.0426, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 200000000, \"sum_internet_bandwidth\": 200000000, \"interfaces\": [{\"internal_bandwidth\": 200000000, \"internet_bandwidth\": 200000000}]}, \"block_bandwidth\": 83886080, \"end_of_service\": false}, \"COPARM1-32C-128G\": {\"alt_names\": [], \"arch\": \"arm64\", \"ncpus\": 32, \"ram\": 137438953472, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 506.26, \"hourly_price\": 0.6935, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 3200000000, \"sum_internet_bandwidth\": 3200000000, \"interfaces\": [{\"internal_bandwidth\": 3200000000, \"internet_bandwidth\": 3200000000}]}, \"block_bandwidth\": 1342177280, \"end_of_service\": false}, \"COPARM1-4C-16G\": {\"alt_names\": [], \"arch\": \"arm64\", \"ncpus\": 4, \"ram\": 17179869184, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 62.56, \"hourly_price\": 0.0857, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 400000000, \"sum_internet_bandwidth\": 400000000, \"interfaces\": [{\"internal_bandwidth\": 400000000, \"internet_bandwidth\": 400000000}]}, \"block_bandwidth\": 167772160, \"end_of_service\": false}, \"COPARM1-8C-32G\": {\"alt_names\": [], \"arch\": \"arm64\", \"ncpus\": 8, \"ram\": 34359738368, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 125.85, \"hourly_price\": 0.1724, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 800000000, \"sum_internet_bandwidth\": 800000000, \"interfaces\": [{\"internal_bandwidth\": 800000000, \"internet_bandwidth\": 800000000}]}, \"block_bandwidth\": 335544320, \"end_of_service\": false}, \"DEV1-L\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 4, \"ram\": 8589934592, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 80000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 36.1496, \"hourly_price\": 0.04952, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 400000000, \"sum_internet_bandwidth\": 400000000, \"interfaces\": [{\"internal_bandwidth\": 400000000, \"internet_bandwidth\": 400000000}]}, \"block_bandwidth\": 209715200, \"end_of_service\": false}, \"DEV1-M\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 3, \"ram\": 4294967296, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 40000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 18.6588, \"hourly_price\": 0.02556, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 300000000, \"sum_internet_bandwidth\": 300000000, \"interfaces\": [{\"internal_bandwidth\": 300000000, \"internet_bandwidth\": 300000000}]}, \"block_bandwidth\": 157286400, \"end_of_service\": false}, \"DEV1-S\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 2, \"ram\": 2147483648, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 20000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 9.9864, \"hourly_price\": 0.01368, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 200000000, \"sum_internet_bandwidth\": 200000000, \"interfaces\": [{\"internal_bandwidth\": 200000000, \"internet_bandwidth\": 200000000}]}, \"block_bandwidth\": 104857600, \"end_of_service\": false}, \"DEV1-XL\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 4, \"ram\": 12884901888, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 120000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 53.3484, \"hourly_price\": 0.07308, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 500000000, \"sum_internet_bandwidth\": 500000000, \"interfaces\": [{\"internal_bandwidth\": 500000000, \"internet_bandwidth\": 500000000}]}, \"block_bandwidth\": 262144000, \"end_of_service\": false}, \"GP1-L\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 32, \"ram\": 137438953472, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 600000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 576.262, \"hourly_price\": 0.7894, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 5000000000, \"sum_internet_bandwidth\": 5000000000, \"interfaces\": [{\"internal_bandwidth\": 5000000000, \"internet_bandwidth\": 5000000000}]}, \"block_bandwidth\": 1073741824, \"end_of_service\": false}, \"GP1-M\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 16, \"ram\": 68719476736, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 600000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 296.672, \"hourly_price\": 0.4064, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 1500000000, \"sum_internet_bandwidth\": 1500000000, \"interfaces\": [{\"internal_bandwidth\": 1500000000, \"internet_bandwidth\": 1500000000}]}, \"block_bandwidth\": 838860800, \"end_of_service\": false}, \"GP1-S\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 8, \"ram\": 34359738368, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 300000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 149.066, \"hourly_price\": 0.2042, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 800000000, \"sum_internet_bandwidth\": 800000000, \"interfaces\": [{\"internal_bandwidth\": 800000000, \"internet_bandwidth\": 800000000}]}, \"block_bandwidth\": 524288000, \"end_of_service\": false}, \"GP1-XL\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 48, \"ram\": 274877906944, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 600000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 1220.122, \"hourly_price\": 1.6714, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 10000000000, \"sum_internet_bandwidth\": 10000000000, \"interfaces\": [{\"internal_bandwidth\": 10000000000, \"internet_bandwidth\": 10000000000}]}, \"block_bandwidth\": 2147483648, \"end_of_service\": false}, \"GP1-XS\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 4, \"ram\": 17179869184, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 150000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 74.168, \"hourly_price\": 0.1016, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 500000000, \"sum_internet_bandwidth\": 500000000, \"interfaces\": [{\"internal_bandwidth\": 500000000, \"internet_bandwidth\": 500000000}]}, \"block_bandwidth\": 314572800, \"end_of_service\": false}, \"L4-1-24G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 8, \"ram\": 51539607552, \"gpu\": 1, \"gpu_info\": {\"gpu_manufacturer\": \"NVIDIA\", \"gpu_name\": \"L4\", \"gpu_memory\": 25769803776}, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 547.5, \"hourly_price\": 0.75, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 2}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 2500000000, \"sum_internet_bandwidth\": 2500000000, \"interfaces\": [{\"internal_bandwidth\": 2500000000, \"internet_bandwidth\": 2500000000}]}, \"block_bandwidth\": 1048576000, \"end_of_service\": false}, \"L4-2-24G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 16, \"ram\": 103079215104, \"gpu\": 2, \"gpu_info\": {\"gpu_manufacturer\": \"NVIDIA\", \"gpu_name\": \"L4\", \"gpu_memory\": 25769803776}, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 1095.0, \"hourly_price\": 1.5, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 4}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 5000000000, \"sum_internet_bandwidth\": 5000000000, \"interfaces\": [{\"internal_bandwidth\": 5000000000, \"internet_bandwidth\": 5000000000}]}, \"block_bandwidth\": 1572864000, \"end_of_service\": false}, \"L4-4-24G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 32, \"ram\": 206158430208, \"gpu\": 4, \"gpu_info\": {\"gpu_manufacturer\": \"NVIDIA\", \"gpu_name\": \"L4\", \"gpu_memory\": 25769803776}, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 2190.0, \"hourly_price\": 3.0, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 8}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 10000000000, \"sum_internet_bandwidth\": 10000000000, \"interfaces\": [{\"internal_bandwidth\": 10000000000, \"internet_bandwidth\": 10000000000}]}, \"block_bandwidth\": 2621440000, \"end_of_service\": false}, \"L4-8-24G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 64, \"ram\": 412316860416, \"gpu\": 8, \"gpu_info\": {\"gpu_manufacturer\": \"NVIDIA\", \"gpu_name\": \"L4\", \"gpu_memory\": 25769803776}, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 4380.0, \"hourly_price\": 6.0, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 16}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 20000000000, \"sum_internet_bandwidth\": 20000000000, \"interfaces\": [{\"internal_bandwidth\": 20000000000, \"internet_bandwidth\": 20000000000}]}, \"block_bandwidth\": 5242880000, \"end_of_service\": false}, \"PLAY2-MICRO\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 4, \"ram\": 8589934592, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 39.42, \"hourly_price\": 0.054, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 400000000, \"sum_internet_bandwidth\": 400000000, \"interfaces\": [{\"internal_bandwidth\": 400000000, \"internet_bandwidth\": 400000000}]}, \"block_bandwidth\": 167772160, \"end_of_service\": false}, \"PLAY2-NANO\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 2, \"ram\": 4294967296, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 19.71, \"hourly_price\": 0.027, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 200000000, \"sum_internet_bandwidth\": 200000000, \"interfaces\": [{\"internal_bandwidth\": 200000000, \"internet_bandwidth\": 200000000}]}, \"block_bandwidth\": 83886080, \"end_of_service\": false}, \"PLAY2-PICO\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 1, \"ram\": 2147483648, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 10.22, \"hourly_price\": 0.014, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 100000000, \"sum_internet_bandwidth\": 100000000, \"interfaces\": [{\"internal_bandwidth\": 100000000, \"internet_bandwidth\": 100000000}]}, \"block_bandwidth\": 41943040, \"end_of_service\": false}, \"POP2-16C-64G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 16, \"ram\": 68719476736, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 430.7, \"hourly_price\": 0.59, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 4}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 3200000000, \"sum_internet_bandwidth\": 3200000000, \"interfaces\": [{\"internal_bandwidth\": 3200000000, \"internet_bandwidth\": 3200000000}]}, \"block_bandwidth\": 3355443200, \"end_of_service\": false}, \"POP2-16C-64G-WIN\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 16, \"ram\": 68719476736, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 1063.391, \"hourly_price\": 1.4567, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 3200000000, \"sum_internet_bandwidth\": 3200000000, \"interfaces\": [{\"internal_bandwidth\": 3200000000, \"internet_bandwidth\": 3200000000}]}, \"block_bandwidth\": 3355443200, \"end_of_service\": false}, \"POP2-2C-8G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 2, \"ram\": 8589934592, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 53.66, \"hourly_price\": 0.0735, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 1}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 400000000, \"sum_internet_bandwidth\": 400000000, \"interfaces\": [{\"internal_bandwidth\": 400000000, \"internet_bandwidth\": 400000000}]}, \"block_bandwidth\": 419430400, \"end_of_service\": false}, \"POP2-2C-8G-WIN\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 2, \"ram\": 8589934592, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 133.079, \"hourly_price\": 0.1823, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 400000000, \"sum_internet_bandwidth\": 400000000, \"interfaces\": [{\"internal_bandwidth\": 400000000, \"internet_bandwidth\": 400000000}]}, \"block_bandwidth\": 419430400, \"end_of_service\": false}, \"POP2-32C-128G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 32, \"ram\": 137438953472, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 861.4, \"hourly_price\": 1.18, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 8}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 6400000000, \"sum_internet_bandwidth\": 6400000000, \"interfaces\": [{\"internal_bandwidth\": 6400000000, \"internet_bandwidth\": 6400000000}]}, \"block_bandwidth\": 5905580032, \"end_of_service\": false}, \"POP2-32C-128G-WIN\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 32, \"ram\": 137438953472, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 2126.709, \"hourly_price\": 2.9133, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 6400000000, \"sum_internet_bandwidth\": 6400000000, \"interfaces\": [{\"internal_bandwidth\": 6400000000, \"internet_bandwidth\": 6400000000}]}, \"block_bandwidth\": 5905580032, \"end_of_service\": false}, \"POP2-48C-192G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 48, \"ram\": 206158430208, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 1274.4, \"hourly_price\": 1.77, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 12}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 9600000000, \"sum_internet_bandwidth\": 9600000000, \"interfaces\": [{\"internal_bandwidth\": 9600000000, \"internet_bandwidth\": 9600000000}]}, \"block_bandwidth\": 5905580032, \"end_of_service\": false}, \"POP2-4C-16G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 4, \"ram\": 17179869184, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 107.31, \"hourly_price\": 0.147, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 1}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 800000000, \"sum_internet_bandwidth\": 800000000, \"interfaces\": [{\"internal_bandwidth\": 800000000, \"internet_bandwidth\": 800000000}]}, \"block_bandwidth\": 838860800, \"end_of_service\": false}, \"POP2-4C-16G-WIN\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 4, \"ram\": 17179869184, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 265.501, \"hourly_price\": 0.3637, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 800000000, \"sum_internet_bandwidth\": 800000000, \"interfaces\": [{\"internal_bandwidth\": 800000000, \"internet_bandwidth\": 800000000}]}, \"block_bandwidth\": 838860800, \"end_of_service\": false}, \"POP2-64C-256G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 64, \"ram\": 274877906944, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 1715.5, \"hourly_price\": 2.35, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 16}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 12800000000, \"sum_internet_bandwidth\": 12800000000, \"interfaces\": [{\"internal_bandwidth\": 12800000000, \"internet_bandwidth\": 12800000000}]}, \"block_bandwidth\": 5905580032, \"end_of_service\": false}, \"POP2-8C-32G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 8, \"ram\": 34359738368, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 211.7, \"hourly_price\": 0.29, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 2}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 1600000000, \"sum_internet_bandwidth\": 1600000000, \"interfaces\": [{\"internal_bandwidth\": 1600000000, \"internet_bandwidth\": 1600000000}]}, \"block_bandwidth\": 1677721600, \"end_of_service\": false}, \"POP2-8C-32G-WIN\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 8, \"ram\": 34359738368, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 528.009, \"hourly_price\": 0.7233, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 1600000000, \"sum_internet_bandwidth\": 1600000000, \"interfaces\": [{\"internal_bandwidth\": 1600000000, \"internet_bandwidth\": 1600000000}]}, \"block_bandwidth\": 1677721600, \"end_of_service\": false}, \"POP2-HC-16C-32G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 16, \"ram\": 34359738368, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 310.69, \"hourly_price\": 0.4256, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 4}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 3200000000, \"sum_internet_bandwidth\": 3200000000, \"interfaces\": [{\"internal_bandwidth\": 3200000000, \"internet_bandwidth\": 3200000000}]}, \"block_bandwidth\": 3355443200, \"end_of_service\": false}, \"POP2-HC-2C-4G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 2, \"ram\": 4294967296, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 38.84, \"hourly_price\": 0.0532, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 1}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 400000000, \"sum_internet_bandwidth\": 400000000, \"interfaces\": [{\"internal_bandwidth\": 400000000, \"internet_bandwidth\": 400000000}]}, \"block_bandwidth\": 419430400, \"end_of_service\": false}, \"POP2-HC-32C-64G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 32, \"ram\": 68719476736, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 621.38, \"hourly_price\": 0.8512, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 8}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 6400000000, \"sum_internet_bandwidth\": 6400000000, \"interfaces\": [{\"internal_bandwidth\": 6400000000, \"internet_bandwidth\": 6400000000}]}, \"block_bandwidth\": 5905580032, \"end_of_service\": false}, \"POP2-HC-48C-96G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 48, \"ram\": 103079215104, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 914.4, \"hourly_price\": 1.27, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 12}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 9600000000, \"sum_internet_bandwidth\": 9600000000, \"interfaces\": [{\"internal_bandwidth\": 9600000000, \"internet_bandwidth\": 9600000000}]}, \"block_bandwidth\": 5905580032, \"end_of_service\": false}, \"POP2-HC-4C-8G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 4, \"ram\": 8589934592, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 77.67, \"hourly_price\": 0.1064, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 1}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 800000000, \"sum_internet_bandwidth\": 800000000, \"interfaces\": [{\"internal_bandwidth\": 800000000, \"internet_bandwidth\": 800000000}]}, \"block_bandwidth\": 838860800, \"end_of_service\": false}, \"POP2-HC-64C-128G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 64, \"ram\": 137438953472, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 1242.75, \"hourly_price\": 1.7024, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 16}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 12800000000, \"sum_internet_bandwidth\": 12800000000, \"interfaces\": [{\"internal_bandwidth\": 12800000000, \"internet_bandwidth\": 12800000000}]}, \"block_bandwidth\": 5905580032, \"end_of_service\": false}, \"POP2-HC-8C-16G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 8, \"ram\": 17179869184, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 155.34, \"hourly_price\": 0.2128, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 2}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 1600000000, \"sum_internet_bandwidth\": 1600000000, \"interfaces\": [{\"internal_bandwidth\": 1600000000, \"internet_bandwidth\": 1600000000}]}, \"block_bandwidth\": 1677721600, \"end_of_service\": false}, \"POP2-HM-16C-128G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 16, \"ram\": 137438953472, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 601.52, \"hourly_price\": 0.824, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 4}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 3200000000, \"sum_internet_bandwidth\": 3200000000, \"interfaces\": [{\"internal_bandwidth\": 3200000000, \"internet_bandwidth\": 3200000000}]}, \"block_bandwidth\": 3355443200, \"end_of_service\": false}, \"POP2-HM-2C-16G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 2, \"ram\": 17179869184, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 75.19, \"hourly_price\": 0.103, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 2}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 400000000, \"sum_internet_bandwidth\": 400000000, \"interfaces\": [{\"internal_bandwidth\": 400000000, \"internet_bandwidth\": 400000000}]}, \"block_bandwidth\": 419430400, \"end_of_service\": false}}}"
- headers:
- Content-Length:
- - "39220"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:47:53 GMT
- Link:
- - ; rel="next",; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 1cee6938-2792-4c4c-87ef-9cd70b08766a
- X-Total-Count:
- - "76"
- status: 200 OK
- code: 200
- duration: 205.453ms
-- id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- form:
- page:
- - "2"
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.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
- content_length: 20512
- body: "{\"servers\": {\"POP2-HM-32C-256G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 32, \"ram\": 274877906944, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 1203.04, \"hourly_price\": 1.648, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 8}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 6400000000, \"sum_internet_bandwidth\": 6400000000, \"interfaces\": [{\"internal_bandwidth\": 6400000000, \"internet_bandwidth\": 6400000000}]}, \"block_bandwidth\": 5905580032, \"end_of_service\": false}, \"POP2-HM-48C-384G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 48, \"ram\": 412316860416, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 1778.4, \"hourly_price\": 2.47, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 12}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 9600000000, \"sum_internet_bandwidth\": 9600000000, \"interfaces\": [{\"internal_bandwidth\": 9600000000, \"internet_bandwidth\": 9600000000}]}, \"block_bandwidth\": 5905580032, \"end_of_service\": false}, \"POP2-HM-4C-32G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 4, \"ram\": 34359738368, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 150.38, \"hourly_price\": 0.206, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 1}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 800000000, \"sum_internet_bandwidth\": 800000000, \"interfaces\": [{\"internal_bandwidth\": 800000000, \"internet_bandwidth\": 800000000}]}, \"block_bandwidth\": 838860800, \"end_of_service\": false}, \"POP2-HM-64C-512G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 64, \"ram\": 549755813888, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 2406.08, \"hourly_price\": 3.296, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 16}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 12800000000, \"sum_internet_bandwidth\": 12800000000, \"interfaces\": [{\"internal_bandwidth\": 12800000000, \"internet_bandwidth\": 12800000000}]}, \"block_bandwidth\": 5905580032, \"end_of_service\": false}, \"POP2-HM-8C-64G\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 8, \"ram\": 68719476736, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 300.76, \"hourly_price\": 0.412, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 2}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 1600000000, \"sum_internet_bandwidth\": 1600000000, \"interfaces\": [{\"internal_bandwidth\": 1600000000, \"internet_bandwidth\": 1600000000}]}, \"block_bandwidth\": 1677721600, \"end_of_service\": false}, \"POP2-HN-10\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 4, \"ram\": 8589934592, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 530.29, \"hourly_price\": 0.7264, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 1}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 10000000000, \"sum_internet_bandwidth\": 10000000000, \"interfaces\": [{\"internal_bandwidth\": 10000000000, \"internet_bandwidth\": 10000000000}]}, \"block_bandwidth\": 838860800, \"end_of_service\": false}, \"POP2-HN-3\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 2, \"ram\": 4294967296, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 186.49, \"hourly_price\": 0.2554, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 1}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 3000000000, \"sum_internet_bandwidth\": 3000000000, \"interfaces\": [{\"internal_bandwidth\": 3000000000, \"internet_bandwidth\": 3000000000}]}, \"block_bandwidth\": 419430400, \"end_of_service\": false}, \"POP2-HN-5\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 4, \"ram\": 8589934592, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 330.29, \"hourly_price\": 0.4524, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 1}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 5000000000, \"sum_internet_bandwidth\": 5000000000, \"interfaces\": [{\"internal_bandwidth\": 5000000000, \"internet_bandwidth\": 5000000000}]}, \"block_bandwidth\": 838860800, \"end_of_service\": false}, \"PRO2-L\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 32, \"ram\": 137438953472, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 640.21, \"hourly_price\": 0.877, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 6000000000, \"sum_internet_bandwidth\": 6000000000, \"interfaces\": [{\"internal_bandwidth\": 6000000000, \"internet_bandwidth\": 6000000000}]}, \"block_bandwidth\": 2097152000, \"end_of_service\": false}, \"PRO2-M\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 16, \"ram\": 68719476736, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 319.74, \"hourly_price\": 0.438, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 3000000000, \"sum_internet_bandwidth\": 3000000000, \"interfaces\": [{\"internal_bandwidth\": 3000000000, \"internet_bandwidth\": 3000000000}]}, \"block_bandwidth\": 1048576000, \"end_of_service\": false}, \"PRO2-S\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 8, \"ram\": 34359738368, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 159.87, \"hourly_price\": 0.219, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 1500000000, \"sum_internet_bandwidth\": 1500000000, \"interfaces\": [{\"internal_bandwidth\": 1500000000, \"internet_bandwidth\": 1500000000}]}, \"block_bandwidth\": 524288000, \"end_of_service\": false}, \"PRO2-XS\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 4, \"ram\": 17179869184, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 80.3, \"hourly_price\": 0.11, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 700000000, \"sum_internet_bandwidth\": 700000000, \"interfaces\": [{\"internal_bandwidth\": 700000000, \"internet_bandwidth\": 700000000}]}, \"block_bandwidth\": 262144000, \"end_of_service\": false}, \"PRO2-XXS\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 2, \"ram\": 8589934592, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 0}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 0, \"max_size\": 0}}, \"scratch_storage_max_size\": null, \"monthly_price\": 40.15, \"hourly_price\": 0.055, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": false, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 350000000, \"sum_internet_bandwidth\": 350000000, \"interfaces\": [{\"internal_bandwidth\": 350000000, \"internet_bandwidth\": 350000000}]}, \"block_bandwidth\": 131072000, \"end_of_service\": false}, \"RENDER-S\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 10, \"ram\": 45097156608, \"gpu\": 1, \"gpu_info\": {\"gpu_manufacturer\": \"NVIDIA\", \"gpu_name\": \"P100\", \"gpu_memory\": 17179869184}, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 400000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 907.098, \"hourly_price\": 1.2426, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 2000000000, \"sum_internet_bandwidth\": 2000000000, \"interfaces\": [{\"internal_bandwidth\": 2000000000, \"internet_bandwidth\": 2000000000}]}, \"block_bandwidth\": 2147483648, \"end_of_service\": false}, \"STARDUST1-S\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 1, \"ram\": 1073741824, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 10000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 3.3507, \"hourly_price\": 0.00459, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 100000000, \"sum_internet_bandwidth\": 100000000, \"interfaces\": [{\"internal_bandwidth\": 100000000, \"internet_bandwidth\": 100000000}]}, \"block_bandwidth\": 52428800, \"end_of_service\": false}, \"START1-L\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 8, \"ram\": 8589934592, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 200000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 26.864, \"hourly_price\": 0.0368, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 400000000, \"sum_internet_bandwidth\": 400000000, \"interfaces\": [{\"internal_bandwidth\": 400000000, \"internet_bandwidth\": 400000000}]}, \"block_bandwidth\": 41943040, \"end_of_service\": true}, \"START1-M\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 4, \"ram\": 4294967296, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 100000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 14.162, \"hourly_price\": 0.0194, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 300000000, \"sum_internet_bandwidth\": 300000000, \"interfaces\": [{\"internal_bandwidth\": 300000000, \"internet_bandwidth\": 300000000}]}, \"block_bandwidth\": 41943040, \"end_of_service\": true}, \"START1-S\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 2, \"ram\": 2147483648, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 50000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 7.738, \"hourly_price\": 0.0106, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 200000000, \"sum_internet_bandwidth\": 200000000, \"interfaces\": [{\"internal_bandwidth\": 200000000, \"internet_bandwidth\": 200000000}]}, \"block_bandwidth\": 41943040, \"end_of_service\": true}, \"START1-XS\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 1, \"ram\": 1073741824, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 25000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 4.526, \"hourly_price\": 0.0062, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 100000000, \"sum_internet_bandwidth\": 100000000, \"interfaces\": [{\"internal_bandwidth\": 100000000, \"internet_bandwidth\": 100000000}]}, \"block_bandwidth\": 41943040, \"end_of_service\": true}, \"VC1L\": {\"alt_names\": [\"X64-8GB\"], \"arch\": \"x86_64\", \"ncpus\": 6, \"ram\": 8589934592, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 200000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 18.0164, \"hourly_price\": 0.02468, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 200000000, \"sum_internet_bandwidth\": 200000000, \"interfaces\": [{\"internal_bandwidth\": 200000000, \"internet_bandwidth\": 200000000}]}, \"block_bandwidth\": 41943040, \"end_of_service\": true}, \"VC1M\": {\"alt_names\": [\"X64-4GB\"], \"arch\": \"x86_64\", \"ncpus\": 4, \"ram\": 4294967296, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 100000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 11.3515, \"hourly_price\": 0.01555, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 200000000, \"sum_internet_bandwidth\": 200000000, \"interfaces\": [{\"internal_bandwidth\": 200000000, \"internet_bandwidth\": 200000000}]}, \"block_bandwidth\": 41943040, \"end_of_service\": true}, \"VC1S\": {\"alt_names\": [\"X64-2GB\"], \"arch\": \"x86_64\", \"ncpus\": 2, \"ram\": 2147483648, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 50000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 6.2926, \"hourly_price\": 0.00862, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 200000000, \"sum_internet_bandwidth\": 200000000, \"interfaces\": [{\"internal_bandwidth\": 200000000, \"internet_bandwidth\": 200000000}]}, \"block_bandwidth\": 41943040, \"end_of_service\": true}, \"X64-120GB\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 12, \"ram\": 128849018880, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 800000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 310.7902, \"hourly_price\": 0.42574, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 1000000000, \"sum_internet_bandwidth\": 1000000000, \"interfaces\": [{\"internal_bandwidth\": 1000000000, \"internet_bandwidth\": 1000000000}]}, \"block_bandwidth\": 41943040, \"end_of_service\": true}, \"X64-15GB\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 6, \"ram\": 16106127360, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 200000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 44.0336, \"hourly_price\": 0.06032, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 250000000, \"sum_internet_bandwidth\": 250000000, \"interfaces\": [{\"internal_bandwidth\": 250000000, \"internet_bandwidth\": 250000000}]}, \"block_bandwidth\": 41943040, \"end_of_service\": true}, \"X64-30GB\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 8, \"ram\": 32212254720, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 400000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 86.9138, \"hourly_price\": 0.11906, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 500000000, \"sum_internet_bandwidth\": 500000000, \"interfaces\": [{\"internal_bandwidth\": 500000000, \"internet_bandwidth\": 500000000}]}, \"block_bandwidth\": 41943040, \"end_of_service\": true}, \"X64-60GB\": {\"alt_names\": [], \"arch\": \"x86_64\", \"ncpus\": 10, \"ram\": 64424509440, \"gpu\": 0, \"gpu_info\": null, \"mig_profile\": null, \"volumes_constraint\": {\"min_size\": 0, \"max_size\": 700000000000}, \"per_volume_constraint\": {\"l_ssd\": {\"min_size\": 1000000000, \"max_size\": 800000000000}}, \"scratch_storage_max_size\": null, \"monthly_price\": 155.49, \"hourly_price\": 0.213, \"capabilities\": {\"boot_types\": [\"local\", \"rescue\"], \"placement_groups\": true, \"block_storage\": true, \"hot_snapshots_local_volume\": true, \"private_network\": 8, \"max_file_systems\": 0}, \"network\": {\"ipv6_support\": true, \"sum_internal_bandwidth\": 1000000000, \"sum_internet_bandwidth\": 1000000000, \"interfaces\": [{\"internal_bandwidth\": 1000000000, \"internet_bandwidth\": 1000000000}]}, \"block_bandwidth\": 41943040, \"end_of_service\": true}}}"
- headers:
- Content-Length:
- - "20512"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:47:53 GMT
- Link:
- - ; rel="first",; rel="previous",; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - a30aa62e-281d-48f8-8a40-1797c81bb67e
- X-Total-Count:
- - "76"
- status: 200 OK
- code: 200
- duration: 87.971917ms
-- id: 2
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- form:
- image_label:
- - ubuntu_jammy
- order_by:
- - type_asc
- type:
- - instance_sbs
- zone:
- - fr-par-1
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_sbs&zone=fr-par-1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 1403
- body: "{\"local_images\":[{\"id\":\"65ce6135-f6d5-4e90-82ec-ef09d29d1cff\", \"arch\":\"arm64\", \"zone\":\"fr-par-1\", \"compatible_commercial_types\":[\"COPARM1-2C-8G\", \"COPARM1-4C-16G\", \"COPARM1-8C-32G\", \"COPARM1-16C-64G\", \"COPARM1-32C-128G\", \"BASIC2-A2C-4G\", \"BASIC2-A2C-8G\", \"BASIC2-A4C-8G\", \"BASIC2-A4C-16G\", \"BASIC2-A8C-16G\", \"BASIC2-A8C-32G\", \"BASIC2-A16C-32G\", \"BASIC2-A16C-64G\"], \"label\":\"ubuntu_jammy\", \"type\":\"instance_sbs\"}, {\"id\":\"6d3c053e-c728-4294-b23a-560b62a4d592\", \"arch\":\"x86_64\", \"zone\":\"fr-par-1\", \"compatible_commercial_types\":[\"DEV1-L\", \"DEV1-M\", \"DEV1-S\", \"DEV1-XL\", \"GP1-L\", \"GP1-M\", \"GP1-S\", \"GP1-XL\", \"GP1-XS\", \"START1-L\", \"START1-M\", \"START1-S\", \"START1-XS\", \"VC1L\", \"VC1M\", \"VC1S\", \"X64-120GB\", \"X64-15GB\", \"X64-30GB\", \"X64-60GB\", \"ENT1-XXS\", \"ENT1-XS\", \"ENT1-S\", \"ENT1-M\", \"ENT1-L\", \"ENT1-XL\", \"ENT1-2XL\", \"PRO2-XXS\", \"PRO2-XS\", \"PRO2-S\", \"PRO2-M\", \"PRO2-L\", \"STARDUST1-S\", \"PLAY2-MICRO\", \"PLAY2-NANO\", \"PLAY2-PICO\", \"POP2-2C-8G\", \"POP2-4C-16G\", \"POP2-8C-32G\", \"POP2-16C-64G\", \"POP2-32C-128G\", \"POP2-48C-192G\", \"POP2-64C-256G\", \"POP2-HM-2C-16G\", \"POP2-HM-4C-32G\", \"POP2-HM-8C-64G\", \"POP2-HM-16C-128G\", \"POP2-HM-32C-256G\", \"POP2-HM-48C-384G\", \"POP2-HM-64C-512G\", \"POP2-HC-2C-4G\", \"POP2-HC-4C-8G\", \"POP2-HC-8C-16G\", \"POP2-HC-16C-32G\", \"POP2-HC-32C-64G\", \"POP2-HC-48C-96G\", \"POP2-HC-64C-128G\", \"POP2-HN-3\", \"POP2-HN-5\", \"POP2-HN-10\"], \"label\":\"ubuntu_jammy\", \"type\":\"instance_sbs\"}], \"total_count\":2}"
- headers:
- Content-Length:
- - "1403"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:47:53 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - a7879c8d-02c9-4990-8c36-3b91d95faf57
- status: 200 OK
- code: 200
- duration: 69.733625ms
-- id: 3
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 250
- host: api.scaleway.com
- body: "{\"name\":\"test-terraform-datasource-private-nic\",\"dynamic_ip_required\":false,\"commercial_type\":\"DEV1-S\",\"image\":\"6d3c053e-c728-4294-b23a-560b62a4d592\",\"volumes\":{\"0\":{\"boot\":false}},\"boot_type\":\"local\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}"
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.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
- content_length: 1774
- body: "{\"server\": {\"id\": \"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"name\": \"test-terraform-datasource-private-nic\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"test-terraform-datasource-private-nic\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"417f07ce-9dc2-4a56-8ab1-c57e499ca556\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d6:61:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-26T10:47:54.505682+00:00\", \"modification_date\": \"2025-11-26T10:47:54.505682+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": null, \"maintenances\": [], \"allowed_actions\": [\"poweron\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}"
- headers:
- Content-Length:
- - "1774"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:47:54 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 9465602b-5382-453a-817c-53d2681b6831
- status: 201 Created
- code: 201
- duration: 1.016990375s
-- id: 4
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 1774
- body: "{\"server\": {\"id\": \"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"name\": \"test-terraform-datasource-private-nic\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"test-terraform-datasource-private-nic\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"417f07ce-9dc2-4a56-8ab1-c57e499ca556\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d6:61:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-26T10:47:54.505682+00:00\", \"modification_date\": \"2025-11-26T10:47:54.505682+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": null, \"maintenances\": [], \"allowed_actions\": [\"poweron\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}"
- headers:
- Content-Length:
- - "1774"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:47:55 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - a45d145e-d716-43e0-99ac-76d781e0864f
- status: 200 OK
- code: 200
- duration: 147.898792ms
-- id: 5
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 1774
- body: "{\"server\": {\"id\": \"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"name\": \"test-terraform-datasource-private-nic\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"test-terraform-datasource-private-nic\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"417f07ce-9dc2-4a56-8ab1-c57e499ca556\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d6:61:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-26T10:47:54.505682+00:00\", \"modification_date\": \"2025-11-26T10:47:54.505682+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": null, \"maintenances\": [], \"allowed_actions\": [\"poweron\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}"
- headers:
- Content-Length:
- - "1774"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:47:55 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 2f3e2d92-fa79-491d-9e87-c2d3ae2ff3aa
- status: 200 OK
- code: 200
- duration: 167.951458ms
-- id: 6
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/417f07ce-9dc2-4a56-8ab1-c57e499ca556
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 705
- body: "{\"id\":\"417f07ce-9dc2-4a56-8ab1-c57e499ca556\", \"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-26T10:47:54.637570Z\", \"updated_at\":\"2025-11-26T10:47:54.637570Z\", \"references\":[{\"id\":\"0bbbf336-fd76-493c-857f-b7b6a3f9ba27\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"created_at\":\"2025-11-26T10:47:54.637570Z\", \"type\":\"exclusive\", \"status\":\"attached\"}], \"parent_snapshot_id\":\"36b4ce54-c67a-4f68-ab74-839515834352\", \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}"
- headers:
- Content-Length:
- - "705"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:47:55 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 2a4b7483-5efc-4270-b604-fd01dd1501d2
- status: 200 OK
- code: 200
- duration: 103.975375ms
-- id: 7
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 20
- host: api.scaleway.com
- body: "{\"action\":\"poweron\"}"
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6/action
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 357
- body: "{\"task\": {\"id\": \"310bbad1-58d4-484d-8854-217b0a16122e\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6/action\", \"href_result\": \"/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"started_at\": \"2025-11-26T10:47:55.667898+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}"
- headers:
- Content-Length:
- - "357"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:47:55 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/310bbad1-58d4-484d-8854-217b0a16122e
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - c526e946-68a2-4533-86e9-ba5719193ead
- status: 202 Accepted
- code: 202
- duration: 293.023875ms
-- id: 8
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 1796
- body: "{\"server\": {\"id\": \"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"name\": \"test-terraform-datasource-private-nic\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"test-terraform-datasource-private-nic\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"417f07ce-9dc2-4a56-8ab1-c57e499ca556\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"starting\", \"protected\": false, \"state_detail\": \"allocating node\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d6:61:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-26T10:47:54.505682+00:00\", \"modification_date\": \"2025-11-26T10:47:55.440134+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": null, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}"
- headers:
- Content-Length:
- - "1796"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:47:55 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 959d8f9e-c085-4f20-a454-69a96343c30b
- status: 200 OK
- code: 200
- duration: 188.855084ms
-- id: 9
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 2017
- body: "{\"server\": {\"id\": \"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"name\": \"test-terraform-datasource-private-nic\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"test-terraform-datasource-private-nic\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"417f07ce-9dc2-4a56-8ab1-c57e499ca556\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d6:61:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-26T10:47:54.505682+00:00\", \"modification_date\": \"2025-11-26T10:47:58.453872+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"34\", \"hypervisor_id\": \"1802\", \"node_id\": \"58\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null, \"admin_password_encrypted_value\": null}}"
- headers:
- Content-Length:
- - "2017"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:01 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - c6daaed0-80fc-41ec-8f50-cf82bec79a38
- status: 200 OK
- code: 200
- duration: 185.1895ms
-- id: 10
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 1931
- body: "{\"server\": {\"id\": \"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"name\": \"test-terraform-datasource-private-nic\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"test-terraform-datasource-private-nic\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"417f07ce-9dc2-4a56-8ab1-c57e499ca556\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d6:61:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-26T10:47:54.505682+00:00\", \"modification_date\": \"2025-11-26T10:47:58.453872+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"34\", \"hypervisor_id\": \"1802\", \"node_id\": \"58\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}"
- headers:
- Content-Length:
- - "1931"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:01 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 44c20c5d-81b3-45a1-a94d-95172453f5b3
- status: 200 OK
- code: 200
- duration: 173.430291ms
-- id: 11
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/417f07ce-9dc2-4a56-8ab1-c57e499ca556
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 143
- body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"417f07ce-9dc2-4a56-8ab1-c57e499ca556\"}"
- headers:
- Content-Length:
- - "143"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:01 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 6840f78c-b9e4-4187-bfff-6f5111e05e7d
- status: 404 Not Found
- code: 404
- duration: 52.764333ms
-- id: 12
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/417f07ce-9dc2-4a56-8ab1-c57e499ca556
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 705
- body: "{\"id\":\"417f07ce-9dc2-4a56-8ab1-c57e499ca556\", \"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-26T10:47:54.637570Z\", \"updated_at\":\"2025-11-26T10:47:54.637570Z\", \"references\":[{\"id\":\"0bbbf336-fd76-493c-857f-b7b6a3f9ba27\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"created_at\":\"2025-11-26T10:47:54.637570Z\", \"type\":\"exclusive\", \"status\":\"attached\"}], \"parent_snapshot_id\":\"36b4ce54-c67a-4f68-ab74-839515834352\", \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}"
- headers:
- Content-Length:
- - "705"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:01 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 0e906fd1-c497-4417-a775-4119cead3f04
- status: 200 OK
- code: 200
- duration: 113.680041ms
-- id: 13
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6/user_data
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 17
- body: "{\"user_data\": []}"
- headers:
- Content-Length:
- - "17"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:01 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 42dac709-82a8-4438-8466-83c03f0c6d03
- status: 200 OK
- code: 200
- duration: 127.010708ms
-- id: 14
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6/private_nics
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 20
- body: "{\"private_nics\": []}"
- headers:
- Content-Length:
- - "20"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:01 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - a7ac603d-4312-4ffd-9138-3b8628832cd7
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 117.29675ms
-- id: 15
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 19
- host: api.scaleway.com
- body: "{\"action\":\"reboot\"}"
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6/action
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 350
- body: "{\"task\": {\"id\": \"84badf34-3c92-49d4-8ea2-7d338ff7854f\", \"description\": \"server_reboot\", \"status\": \"pending\", \"href_from\": \"/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6/action\", \"href_result\": \"/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"started_at\": \"2025-11-26T10:48:01.981073+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}"
- headers:
- Content-Length:
- - "350"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:02 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/84badf34-3c92-49d4-8ea2-7d338ff7854f
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 1753fed7-f793-4d5d-8f2c-0f2377b21962
- status: 202 Accepted
- code: 202
- duration: 329.230417ms
-- id: 16
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 1892
- body: "{\"server\": {\"id\": \"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"name\": \"test-terraform-datasource-private-nic\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"test-terraform-datasource-private-nic\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"417f07ce-9dc2-4a56-8ab1-c57e499ca556\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"rebooting\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d6:61:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-26T10:47:54.505682+00:00\", \"modification_date\": \"2025-11-26T10:48:01.719022+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"34\", \"hypervisor_id\": \"1802\", \"node_id\": \"58\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}"
- headers:
- Content-Length:
- - "1892"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:02 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - bbea53b0-b3d1-421c-a1c1-3a09b321a6ca
- status: 200 OK
- code: 200
- duration: 171.632792ms
-- id: 17
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 1978
- body: "{\"server\": {\"id\": \"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"name\": \"test-terraform-datasource-private-nic\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"test-terraform-datasource-private-nic\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"417f07ce-9dc2-4a56-8ab1-c57e499ca556\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"rebooting\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d6:61:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-26T10:47:54.505682+00:00\", \"modification_date\": \"2025-11-26T10:48:01.719022+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"34\", \"hypervisor_id\": \"1802\", \"node_id\": \"58\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null, \"admin_password_encrypted_value\": null}}"
- headers:
- Content-Length:
- - "1978"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:07 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - a8eafb3d-0243-43f5-8a67-666d5f02d688
- status: 200 OK
- code: 200
- duration: 145.302916ms
-- id: 18
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 1892
- body: "{\"server\": {\"id\": \"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"name\": \"test-terraform-datasource-private-nic\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"test-terraform-datasource-private-nic\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"417f07ce-9dc2-4a56-8ab1-c57e499ca556\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"rebooting\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d6:61:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-26T10:47:54.505682+00:00\", \"modification_date\": \"2025-11-26T10:48:01.719022+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"34\", \"hypervisor_id\": \"1802\", \"node_id\": \"58\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}"
- headers:
- Content-Length:
- - "1892"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:12 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 4fdfbb54-02bd-40eb-9f32-9448a744522b
- status: 200 OK
- code: 200
- duration: 192.075666ms
-- id: 19
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 1892
- body: "{\"server\": {\"id\": \"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"name\": \"test-terraform-datasource-private-nic\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"test-terraform-datasource-private-nic\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"417f07ce-9dc2-4a56-8ab1-c57e499ca556\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"rebooting\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d6:61:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-26T10:47:54.505682+00:00\", \"modification_date\": \"2025-11-26T10:48:01.719022+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"34\", \"hypervisor_id\": \"1802\", \"node_id\": \"58\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}"
- headers:
- Content-Length:
- - "1892"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:18 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 6f4b9f23-ceb8-4283-84e1-e034abb99f1c
- status: 200 OK
- code: 200
- duration: 154.194292ms
-- id: 20
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 1978
- body: "{\"server\": {\"id\": \"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"name\": \"test-terraform-datasource-private-nic\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"test-terraform-datasource-private-nic\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"417f07ce-9dc2-4a56-8ab1-c57e499ca556\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"rebooting\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d6:61:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-26T10:47:54.505682+00:00\", \"modification_date\": \"2025-11-26T10:48:01.719022+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"34\", \"hypervisor_id\": \"1802\", \"node_id\": \"58\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null, \"admin_password_encrypted_value\": null}}"
- headers:
- Content-Length:
- - "1978"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:23 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - b568c202-0f6a-44a7-80a2-c31cdaec6d03
- status: 200 OK
- code: 200
- duration: 110.834917ms
-- id: 21
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 1892
- body: "{\"server\": {\"id\": \"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"name\": \"test-terraform-datasource-private-nic\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"test-terraform-datasource-private-nic\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"417f07ce-9dc2-4a56-8ab1-c57e499ca556\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"rebooting\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d6:61:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-26T10:47:54.505682+00:00\", \"modification_date\": \"2025-11-26T10:48:01.719022+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"34\", \"hypervisor_id\": \"1802\", \"node_id\": \"58\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}"
- headers:
- Content-Length:
- - "1892"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:28 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 08964539-08a2-406d-8bb8-2f7fd2c73321
- status: 200 OK
- code: 200
- duration: 182.564917ms
-- id: 22
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 1892
- body: "{\"server\": {\"id\": \"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"name\": \"test-terraform-datasource-private-nic\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"test-terraform-datasource-private-nic\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"417f07ce-9dc2-4a56-8ab1-c57e499ca556\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"rebooting\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d6:61:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-26T10:47:54.505682+00:00\", \"modification_date\": \"2025-11-26T10:48:01.719022+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"34\", \"hypervisor_id\": \"1802\", \"node_id\": \"58\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}"
- headers:
- Content-Length:
- - "1892"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:33 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - bd73f5d5-0fc3-448d-82d2-055df0cdaa1f
- status: 200 OK
- code: 200
- duration: 111.722875ms
-- id: 23
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 1931
- body: "{\"server\": {\"id\": \"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"name\": \"test-terraform-datasource-private-nic\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"test-terraform-datasource-private-nic\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"417f07ce-9dc2-4a56-8ab1-c57e499ca556\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d6:61:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-26T10:47:54.505682+00:00\", \"modification_date\": \"2025-11-26T10:48:36.867503+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"34\", \"hypervisor_id\": \"1802\", \"node_id\": \"58\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}"
- headers:
- Content-Length:
- - "1931"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:40 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - bff5403c-79c6-4d39-802d-1ea70adc010f
- status: 200 OK
- code: 200
- duration: 1.717256167s
-- id: 24
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/417f07ce-9dc2-4a56-8ab1-c57e499ca556
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 143
- body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"417f07ce-9dc2-4a56-8ab1-c57e499ca556\"}"
- headers:
- Content-Length:
- - "143"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:40 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - f980e366-403a-40ee-aea2-b12fa1f6420d
- status: 404 Not Found
- code: 404
- duration: 38.404583ms
-- id: 25
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/417f07ce-9dc2-4a56-8ab1-c57e499ca556
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 705
- body: "{\"id\":\"417f07ce-9dc2-4a56-8ab1-c57e499ca556\", \"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-26T10:47:54.637570Z\", \"updated_at\":\"2025-11-26T10:47:54.637570Z\", \"references\":[{\"id\":\"0bbbf336-fd76-493c-857f-b7b6a3f9ba27\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"created_at\":\"2025-11-26T10:47:54.637570Z\", \"type\":\"exclusive\", \"status\":\"attached\"}], \"parent_snapshot_id\":\"36b4ce54-c67a-4f68-ab74-839515834352\", \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}"
- headers:
- Content-Length:
- - "705"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:40 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 41adce2f-1349-49e0-8186-27302f246b02
- status: 200 OK
- code: 200
- duration: 97.349208ms
-- id: 26
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6/user_data
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 17
- body: "{\"user_data\": []}"
- headers:
- Content-Length:
- - "17"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:40 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 9403e846-9b5f-4ae4-85de-f6c17a86210c
- status: 200 OK
- code: 200
- duration: 103.610708ms
-- id: 27
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6/private_nics
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 20
- body: "{\"private_nics\": []}"
- headers:
- Content-Length:
- - "20"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:40 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - da2972ed-080a-40d0-95f6-1ef142b5357f
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 58.26325ms
-- id: 28
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 1931
- body: "{\"server\": {\"id\": \"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"name\": \"test-terraform-datasource-private-nic\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"test-terraform-datasource-private-nic\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"417f07ce-9dc2-4a56-8ab1-c57e499ca556\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d6:61:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-26T10:47:54.505682+00:00\", \"modification_date\": \"2025-11-26T10:48:36.867503+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"34\", \"hypervisor_id\": \"1802\", \"node_id\": \"58\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}"
- headers:
- Content-Length:
- - "1931"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:40 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - a9b1323c-053c-406b-9237-8ae0b769ebb2
- status: 200 OK
- code: 200
- duration: 103.227125ms
-- id: 29
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/417f07ce-9dc2-4a56-8ab1-c57e499ca556
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 143
- body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"417f07ce-9dc2-4a56-8ab1-c57e499ca556\"}"
- headers:
- Content-Length:
- - "143"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:41 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 230265c4-d707-4e3e-9074-85410aef79b3
- status: 404 Not Found
- code: 404
- duration: 45.096292ms
-- id: 30
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/417f07ce-9dc2-4a56-8ab1-c57e499ca556
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 705
- body: "{\"id\":\"417f07ce-9dc2-4a56-8ab1-c57e499ca556\", \"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-26T10:47:54.637570Z\", \"updated_at\":\"2025-11-26T10:47:54.637570Z\", \"references\":[{\"id\":\"0bbbf336-fd76-493c-857f-b7b6a3f9ba27\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"created_at\":\"2025-11-26T10:47:54.637570Z\", \"type\":\"exclusive\", \"status\":\"attached\"}], \"parent_snapshot_id\":\"36b4ce54-c67a-4f68-ab74-839515834352\", \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}"
- headers:
- Content-Length:
- - "705"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:41 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 982ad49e-55c0-4b93-b96d-1f87437758b4
- status: 200 OK
- code: 200
- duration: 99.186417ms
-- id: 31
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6/user_data
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 17
- body: "{\"user_data\": []}"
- headers:
- Content-Length:
- - "17"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:41 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 91427b34-3cab-46fa-84d8-52bd3f9a5752
- status: 200 OK
- code: 200
- duration: 50.652083ms
-- id: 32
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6/private_nics
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 20
- body: "{\"private_nics\": []}"
- headers:
- Content-Length:
- - "20"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:41 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 4a9ab8d1-b6f1-471b-86c6-f649d85bf669
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 104.062333ms
-- id: 33
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- form:
- method_name:
- - ServerAction
- order_by:
- - recorded_at_desc
- organization_id:
- - 105bdce1-64c0-48ab-899d-868455867ecf
- resource_id:
- - 5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6
- resource_type:
- - instance_server
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/audit-trail/v1alpha1/regions/fr-par/events?method_name=ServerAction&order_by=recorded_at_desc&organization_id=11111111-1111-1111-1111-111111111111&resource_id=5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6&resource_type=instance_server
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 1698
- body: "{\"events\":[{\"id\":\"c38e4c89-cc4e-47b3-a090-73fd3a05bb46\", \"recorded_at\":\"2025-11-26T10:48:02.001993Z\", \"locality\":\"fr-par-1\", \"principal\":{\"id\":\"88b4dde1-f3d4-478a-a281-784d53399a30\"}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"source_ip\":\"51.159.73.145\", \"user_agent\":\"scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests\", \"product_name\":\"instance\", \"service_name\":\"scaleway.instance.v1.Api\", \"method_name\":\"ServerAction\", \"request_id\":\"1753fed7-f793-4d5d-8f2c-0f2377b21962\", \"request_body\":{\"action\":\"reboot\"}, \"status_code\":202, \"resources\":[{\"id\":\"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"type\":\"instance_server\", \"created_at\":null, \"updated_at\":null, \"deleted_at\":null, \"name\":\"test-terraform-datasource-private-nic\"}]}, {\"id\":\"eeb68871-e38c-418d-b5e5-89ece5ca72d4\", \"recorded_at\":\"2025-11-26T10:47:55.685656Z\", \"locality\":\"fr-par-1\", \"principal\":{\"id\":\"88b4dde1-f3d4-478a-a281-784d53399a30\"}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"source_ip\":\"51.159.73.145\", \"user_agent\":\"scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests\", \"product_name\":\"instance\", \"service_name\":\"scaleway.instance.v1.Api\", \"method_name\":\"ServerAction\", \"request_id\":\"c526e946-68a2-4533-86e9-ba5719193ead\", \"request_body\":{\"action\":\"poweron\"}, \"status_code\":202, \"resources\":[{\"id\":\"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"type\":\"instance_server\", \"created_at\":null, \"updated_at\":null, \"deleted_at\":null, \"name\":\"test-terraform-datasource-private-nic\"}]}]}"
- headers:
- Content-Length:
- - "1698"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:41 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 88f4a60c-3f2d-47e3-a366-f350c5d21133
- status: 200 OK
- code: 200
- duration: 105.865625ms
-- id: 34
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- form:
- method_name:
- - ServerAction
- order_by:
- - recorded_at_desc
- organization_id:
- - 105bdce1-64c0-48ab-899d-868455867ecf
- resource_id:
- - 5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6
- resource_type:
- - instance_server
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/audit-trail/v1alpha1/regions/fr-par/events?method_name=ServerAction&order_by=recorded_at_desc&organization_id=11111111-1111-1111-1111-111111111111&resource_id=5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6&resource_type=instance_server
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 1698
- body: "{\"events\":[{\"id\":\"c38e4c89-cc4e-47b3-a090-73fd3a05bb46\", \"recorded_at\":\"2025-11-26T10:48:02.001993Z\", \"locality\":\"fr-par-1\", \"principal\":{\"id\":\"88b4dde1-f3d4-478a-a281-784d53399a30\"}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"source_ip\":\"51.159.73.145\", \"user_agent\":\"scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests\", \"product_name\":\"instance\", \"service_name\":\"scaleway.instance.v1.Api\", \"method_name\":\"ServerAction\", \"request_id\":\"1753fed7-f793-4d5d-8f2c-0f2377b21962\", \"request_body\":{\"action\":\"reboot\"}, \"status_code\":202, \"resources\":[{\"id\":\"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"type\":\"instance_server\", \"created_at\":null, \"updated_at\":null, \"deleted_at\":null, \"name\":\"test-terraform-datasource-private-nic\"}]}, {\"id\":\"eeb68871-e38c-418d-b5e5-89ece5ca72d4\", \"recorded_at\":\"2025-11-26T10:47:55.685656Z\", \"locality\":\"fr-par-1\", \"principal\":{\"id\":\"88b4dde1-f3d4-478a-a281-784d53399a30\"}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"source_ip\":\"51.159.73.145\", \"user_agent\":\"scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests\", \"product_name\":\"instance\", \"service_name\":\"scaleway.instance.v1.Api\", \"method_name\":\"ServerAction\", \"request_id\":\"c526e946-68a2-4533-86e9-ba5719193ead\", \"request_body\":{\"action\":\"poweron\"}, \"status_code\":202, \"resources\":[{\"id\":\"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"type\":\"instance_server\", \"created_at\":null, \"updated_at\":null, \"deleted_at\":null, \"name\":\"test-terraform-datasource-private-nic\"}]}]}"
- headers:
- Content-Length:
- - "1698"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:41 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 852b0c5f-2513-45e5-8ca9-492c801882f2
- status: 200 OK
- code: 200
- duration: 116.782042ms
-- id: 35
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 1931
- body: "{\"server\": {\"id\": \"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"name\": \"test-terraform-datasource-private-nic\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"test-terraform-datasource-private-nic\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"417f07ce-9dc2-4a56-8ab1-c57e499ca556\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d6:61:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-26T10:47:54.505682+00:00\", \"modification_date\": \"2025-11-26T10:48:36.867503+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"34\", \"hypervisor_id\": \"1802\", \"node_id\": \"58\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}"
- headers:
- Content-Length:
- - "1931"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:42 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - cab3b7eb-b784-4f4d-bb4d-5e4bcedb9959
- status: 200 OK
- code: 200
- duration: 165.248542ms
-- id: 36
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/417f07ce-9dc2-4a56-8ab1-c57e499ca556
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 143
- body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"417f07ce-9dc2-4a56-8ab1-c57e499ca556\"}"
- headers:
- Content-Length:
- - "143"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:42 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - def4fed3-cccf-4ff3-8bba-e624bf30f4ce
- status: 404 Not Found
- code: 404
- duration: 31.409083ms
-- id: 37
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/417f07ce-9dc2-4a56-8ab1-c57e499ca556
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 705
- body: "{\"id\":\"417f07ce-9dc2-4a56-8ab1-c57e499ca556\", \"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-26T10:47:54.637570Z\", \"updated_at\":\"2025-11-26T10:47:54.637570Z\", \"references\":[{\"id\":\"0bbbf336-fd76-493c-857f-b7b6a3f9ba27\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"created_at\":\"2025-11-26T10:47:54.637570Z\", \"type\":\"exclusive\", \"status\":\"attached\"}], \"parent_snapshot_id\":\"36b4ce54-c67a-4f68-ab74-839515834352\", \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}"
- headers:
- Content-Length:
- - "705"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:42 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 0d802024-b03d-42c6-be46-419e24f28c13
- status: 200 OK
- code: 200
- duration: 106.049792ms
-- id: 38
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6/user_data
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 17
- body: "{\"user_data\": []}"
- headers:
- Content-Length:
- - "17"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:42 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 50a71c12-6c40-49a9-a812-548b606fda8a
- status: 200 OK
- code: 200
- duration: 122.62825ms
-- id: 39
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6/private_nics
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 20
- body: "{\"private_nics\": []}"
- headers:
- Content-Length:
- - "20"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:42 GMT
- Link:
- - ; rel="last"
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - ee7fc859-2328-4578-abd6-724dda98042b
- X-Total-Count:
- - "0"
- status: 200 OK
- code: 200
- duration: 54.874833ms
-- id: 40
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- form:
- method_name:
- - ServerAction
- order_by:
- - recorded_at_desc
- organization_id:
- - 105bdce1-64c0-48ab-899d-868455867ecf
- resource_id:
- - 5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6
- resource_type:
- - instance_server
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/audit-trail/v1alpha1/regions/fr-par/events?method_name=ServerAction&order_by=recorded_at_desc&organization_id=11111111-1111-1111-1111-111111111111&resource_id=5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6&resource_type=instance_server
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 1698
- body: "{\"events\":[{\"id\":\"c38e4c89-cc4e-47b3-a090-73fd3a05bb46\", \"recorded_at\":\"2025-11-26T10:48:02.001993Z\", \"locality\":\"fr-par-1\", \"principal\":{\"id\":\"88b4dde1-f3d4-478a-a281-784d53399a30\"}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"source_ip\":\"51.159.73.145\", \"user_agent\":\"scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests\", \"product_name\":\"instance\", \"service_name\":\"scaleway.instance.v1.Api\", \"method_name\":\"ServerAction\", \"request_id\":\"1753fed7-f793-4d5d-8f2c-0f2377b21962\", \"request_body\":{\"action\":\"reboot\"}, \"status_code\":202, \"resources\":[{\"id\":\"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"type\":\"instance_server\", \"created_at\":null, \"updated_at\":null, \"deleted_at\":null, \"name\":\"test-terraform-datasource-private-nic\"}]}, {\"id\":\"eeb68871-e38c-418d-b5e5-89ece5ca72d4\", \"recorded_at\":\"2025-11-26T10:47:55.685656Z\", \"locality\":\"fr-par-1\", \"principal\":{\"id\":\"88b4dde1-f3d4-478a-a281-784d53399a30\"}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"source_ip\":\"51.159.73.145\", \"user_agent\":\"scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests\", \"product_name\":\"instance\", \"service_name\":\"scaleway.instance.v1.Api\", \"method_name\":\"ServerAction\", \"request_id\":\"c526e946-68a2-4533-86e9-ba5719193ead\", \"request_body\":{\"action\":\"poweron\"}, \"status_code\":202, \"resources\":[{\"id\":\"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"type\":\"instance_server\", \"created_at\":null, \"updated_at\":null, \"deleted_at\":null, \"name\":\"test-terraform-datasource-private-nic\"}]}]}"
- headers:
- Content-Length:
- - "1698"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:42 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 7d1d1d65-a0a9-4853-aeae-636dc3c45d75
- status: 200 OK
- code: 200
- duration: 113.335125ms
-- id: 41
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 1931
- body: "{\"server\": {\"id\": \"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"name\": \"test-terraform-datasource-private-nic\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"test-terraform-datasource-private-nic\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"417f07ce-9dc2-4a56-8ab1-c57e499ca556\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d6:61:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-26T10:47:54.505682+00:00\", \"modification_date\": \"2025-11-26T10:48:36.867503+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"34\", \"hypervisor_id\": \"1802\", \"node_id\": \"58\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}"
- headers:
- Content-Length:
- - "1931"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:43 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - d63c9214-75df-46e8-b92e-99c4fb621e32
- status: 200 OK
- code: 200
- duration: 105.963083ms
-- id: 42
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 1931
- body: "{\"server\": {\"id\": \"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"name\": \"test-terraform-datasource-private-nic\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"test-terraform-datasource-private-nic\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"417f07ce-9dc2-4a56-8ab1-c57e499ca556\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d6:61:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-26T10:47:54.505682+00:00\", \"modification_date\": \"2025-11-26T10:48:36.867503+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"34\", \"hypervisor_id\": \"1802\", \"node_id\": \"58\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}"
- headers:
- Content-Length:
- - "1931"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:43 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 42dd3b1c-864a-43c1-9f3e-8aaa89a4eba9
- status: 200 OK
- code: 200
- duration: 121.696958ms
-- id: 43
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 22
- host: api.scaleway.com
- body: "{\"action\":\"terminate\"}"
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6/action
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 353
- body: "{\"task\": {\"id\": \"77ff8a9a-b81d-4937-9229-d1b9727305fd\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6/action\", \"href_result\": \"/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"started_at\": \"2025-11-26T10:48:43.756836+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}"
- headers:
- Content-Length:
- - "353"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:43 GMT
- Location:
- - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/77ff8a9a-b81d-4937-9229-d1b9727305fd
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 5b569759-105a-47ce-956a-d4a701317850
- status: 202 Accepted
- code: 202
- duration: 304.392917ms
-- id: 44
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 1894
- body: "{\"server\": {\"id\": \"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\", \"name\": \"test-terraform-datasource-private-nic\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"test-terraform-datasource-private-nic\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"417f07ce-9dc2-4a56-8ab1-c57e499ca556\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"terminating\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d6:61:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-26T10:47:54.505682+00:00\", \"modification_date\": \"2025-11-26T10:48:43.518518+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"34\", \"hypervisor_id\": \"1802\", \"node_id\": \"58\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}"
- headers:
- Content-Length:
- - "1894"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:43 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - f474c1a3-a9ee-4011-bcf1-5992ae14f85d
- status: 200 OK
- code: 200
- duration: 101.069375ms
-- id: 45
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 143
- body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"5fadc4b9-ae89-4e98-8e61-9b116a4ec4e6\"}"
- headers:
- Content-Length:
- - "143"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:48 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 6a68f557-12a8-4b41-81a0-4aec4302a65f
- status: 404 Not Found
- code: 404
- duration: 64.512625ms
-- id: 46
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/417f07ce-9dc2-4a56-8ab1-c57e499ca556
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 143
- body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"417f07ce-9dc2-4a56-8ab1-c57e499ca556\"}"
- headers:
- Content-Length:
- - "143"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:49 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - ba449afa-8f01-42cd-9973-12872389fd70
- status: 404 Not Found
- code: 404
- duration: 45.961166ms
-- id: 47
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/417f07ce-9dc2-4a56-8ab1-c57e499ca556
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 498
- body: "{\"id\":\"417f07ce-9dc2-4a56-8ab1-c57e499ca556\", \"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-26T10:47:54.637570Z\", \"updated_at\":\"2025-11-26T10:48:45.340657Z\", \"references\":[], \"parent_snapshot_id\":\"36b4ce54-c67a-4f68-ab74-839515834352\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-11-26T10:48:45.340657Z\", \"zone\":\"fr-par-1\"}"
- headers:
- Content-Length:
- - "498"
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:49 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - fcad4917-5ffd-4523-ac47-cb3f912efa41
- status: 200 OK
- code: 200
- duration: 103.467958ms
-- id: 48
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- host: api.scaleway.com
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/417f07ce-9dc2-4a56-8ab1-c57e499ca556
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: 0
- body: ""
- headers:
- Content-Type:
- - application/json
- Date:
- - Wed, 26 Nov 2025 10:48:49 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge03)
- X-Request-Id:
- - 63dfad48-c253-4a66-b57f-0973d87ddeaa
- status: 204 No Content
- code: 204
- duration: 178.561958ms
+ - id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ page:
+ - "1"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 39202
+ body: '{"servers": {"BASIC2-A16C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.89, "hourly_price": 0.2067, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 201.19, "hourly_price": 0.2756, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A2C-4G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 16.79, "hourly_price": 0.023, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 25.19, "hourly_price": 0.0345, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 50.3, "hourly_price": 0.0689, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A4C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 37.74, "hourly_price": 0.0517, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A8C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.48, "hourly_price": 0.1034, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "BASIC2-A8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 100.59, "hourly_price": 0.1378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 30.66, "hourly_price": 0.042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.454, "hourly_price": 0.0198, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.424, "hourly_price": 0.0088, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 46.5734, "hourly_price": 0.06378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 554.07, "hourly_price": 0.759, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 274.48, "hourly_price": 0.376, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 136.51, "hourly_price": 0.187, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1197.93, "hourly_price": 1.641, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 66.43, "hourly_price": 0.091, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}}}'
+ headers:
+ Content-Length:
+ - "39202"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:13:48 GMT
+ Link:
+ - ; rel="next",; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - b76c4f7d-1e56-444c-8495-74d5f81d3dc0
+ X-Total-Count:
+ - "76"
+ status: 200 OK
+ code: 200
+ duration: 137.75936ms
+ - id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ page:
+ - "2"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20510
+ body: '{"servers": {"POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 891.33, "hourly_price": 1.221, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 0.1095, "hourly_price": 0.00015, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}'
+ headers:
+ Content-Length:
+ - "20510"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:13:48 GMT
+ Link:
+ - ; rel="first",; rel="previous",; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - c6ee36f3-a223-4e4d-9045-6a0865252bc0
+ X-Total-Count:
+ - "76"
+ status: 200 OK
+ code: 200
+ duration: 81.535401ms
+ - id: 2
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ image_label:
+ - ubuntu_jammy
+ order_by:
+ - type_asc
+ type:
+ - instance_sbs
+ zone:
+ - fr-par-1
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/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
+ content_length: 1320
+ body: '{"local_images":[{"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff","arch":"arm64","zone":"fr-par-1","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G","BASIC2-A2C-4G","BASIC2-A2C-8G","BASIC2-A4C-8G","BASIC2-A4C-16G","BASIC2-A8C-16G","BASIC2-A8C-32G","BASIC2-A16C-32G","BASIC2-A16C-64G"],"label":"ubuntu_jammy","type":"instance_sbs"},{"id":"6d3c053e-c728-4294-b23a-560b62a4d592","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-48C-192G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-48C-384G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"label":"ubuntu_jammy","type":"instance_sbs"}],"total_count":2}'
+ headers:
+ Content-Length:
+ - "1320"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:13:48 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 21ff14da-407b-4269-8ea9-1c123da79e8a
+ status: 200 OK
+ code: 200
+ duration: 69.847001ms
+ - id: 3
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 247
+ host: api.scaleway.com
+ body: '{"name":"test-terraform-action-server-basic","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1768
+ body: '{"server": {"id": "8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf", "name": "test-terraform-action-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-basic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "7fcf7d33-042e-4d7e-beb0-20fdd732325a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:13:48.387790+00:00", "modification_date": "2025-12-11T17:13:48.387790+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1768"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:13:48 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - e19ded2a-65db-4ed0-a6cc-0987acb62867
+ status: 201 Created
+ code: 201
+ duration: 493.04612ms
+ - id: 4
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1768
+ body: '{"server": {"id": "8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf", "name": "test-terraform-action-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-basic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "7fcf7d33-042e-4d7e-beb0-20fdd732325a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:13:48.387790+00:00", "modification_date": "2025-12-11T17:13:48.387790+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1768"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:13:48 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 87e7c3ac-d7b8-4497-8f0c-3d2700592a72
+ status: 200 OK
+ code: 200
+ duration: 139.712958ms
+ - id: 5
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1768
+ body: '{"server": {"id": "8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf", "name": "test-terraform-action-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-basic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "7fcf7d33-042e-4d7e-beb0-20fdd732325a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:13:48.387790+00:00", "modification_date": "2025-12-11T17:13:48.387790+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1768"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:13:48 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - f25743c5-bf8a-4ea2-a294-e115d6f02b31
+ status: 200 OK
+ code: 200
+ duration: 106.029103ms
+ - id: 6
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7fcf7d33-042e-4d7e-beb0-20fdd732325a
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"7fcf7d33-042e-4d7e-beb0-20fdd732325a","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T17:13:48.478939Z","updated_at":"2025-12-11T17:13:48.478939Z","references":[{"id":"8403945e-14cc-4fa6-ae7b-cef8a158db77","product_resource_type":"instance_server","product_resource_id":"8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf","created_at":"2025-12-11T17:13:48.478939Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:13:49 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 375a0060-0dc0-4807-9d90-bbfc2c9abb08
+ status: 200 OK
+ code: 200
+ duration: 48.262446ms
+ - id: 7
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 20
+ host: api.scaleway.com
+ body: '{"action":"poweron"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 357
+ body: '{"task": {"id": "3e686cd9-deb1-43d0-a18b-c00a68eae2df", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf/action", "href_result": "/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf", "started_at": "2025-12-11T17:13:49.461841+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "357"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:13:49 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3e686cd9-deb1-43d0-a18b-c00a68eae2df
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - bfc809b4-bc58-490f-afe6-447a03143fff
+ status: 202 Accepted
+ code: 202
+ duration: 456.994194ms
+ - id: 8
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1790
+ body: '{"server": {"id": "8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf", "name": "test-terraform-action-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-basic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "7fcf7d33-042e-4d7e-beb0-20fdd732325a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:13:48.387790+00:00", "modification_date": "2025-12-11T17:13:49.080566+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1790"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:13:49 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 715e501f-e70c-470d-8527-ed77633fe694
+ status: 200 OK
+ code: 200
+ duration: 103.693737ms
+ - id: 9
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1925
+ body: '{"server": {"id": "8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf", "name": "test-terraform-action-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-basic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "7fcf7d33-042e-4d7e-beb0-20fdd732325a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:13:48.387790+00:00", "modification_date": "2025-12-11T17:13:52.286334+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1801", "node_id": "14"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1925"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:13:54 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - b667eb04-2a12-488b-aead-6a8d44969441
+ status: 200 OK
+ code: 200
+ duration: 127.699484ms
+ - id: 10
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1925
+ body: '{"server": {"id": "8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf", "name": "test-terraform-action-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-basic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "7fcf7d33-042e-4d7e-beb0-20fdd732325a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:13:48.387790+00:00", "modification_date": "2025-12-11T17:13:52.286334+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1801", "node_id": "14"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1925"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:13:54 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - eb51010b-d325-4188-a238-2bb5b7c7cbcd
+ status: 200 OK
+ code: 200
+ duration: 113.963389ms
+ - id: 11
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7fcf7d33-042e-4d7e-beb0-20fdd732325a
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "7fcf7d33-042e-4d7e-beb0-20fdd732325a"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:13:54 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 6d203cb6-d1f1-4655-9095-794a7db24ad5
+ status: 404 Not Found
+ code: 404
+ duration: 30.022822ms
+ - id: 12
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7fcf7d33-042e-4d7e-beb0-20fdd732325a
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"7fcf7d33-042e-4d7e-beb0-20fdd732325a","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T17:13:48.478939Z","updated_at":"2025-12-11T17:13:48.478939Z","references":[{"id":"8403945e-14cc-4fa6-ae7b-cef8a158db77","product_resource_type":"instance_server","product_resource_id":"8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf","created_at":"2025-12-11T17:13:48.478939Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:13:54 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 596873b4-d4c9-4369-9765-73d4d99810af
+ status: 200 OK
+ code: 200
+ duration: 48.691446ms
+ - id: 13
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:13:54 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - ef80c301-00dd-45df-b852-77fab6d32f67
+ status: 200 OK
+ code: 200
+ duration: 50.127148ms
+ - id: 14
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:13:55 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 5203ba25-ea2b-4098-93bc-4030da6ec098
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 56.073561ms
+ - id: 15
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 19
+ host: api.scaleway.com
+ body: '{"action":"reboot"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 350
+ body: '{"task": {"id": "c887a5ce-cf21-46ac-ae54-bfcf46689745", "description": "server_reboot", "status": "pending", "href_from": "/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf/action", "href_result": "/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf", "started_at": "2025-12-11T17:13:55.218139+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "350"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:13:55 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c887a5ce-cf21-46ac-ae54-bfcf46689745
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 8a0f2a56-3080-454d-ad44-4944e6ece388
+ status: 202 Accepted
+ code: 202
+ duration: 185.198197ms
+ - id: 16
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1886
+ body: '{"server": {"id": "8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf", "name": "test-terraform-action-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-basic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "7fcf7d33-042e-4d7e-beb0-20fdd732325a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "rebooting", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:13:48.387790+00:00", "modification_date": "2025-12-11T17:13:55.089200+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1801", "node_id": "14"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1886"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:13:55 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 813b3c90-174b-445b-8843-de6bde05fa62
+ status: 200 OK
+ code: 200
+ duration: 112.387568ms
+ - id: 17
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1886
+ body: '{"server": {"id": "8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf", "name": "test-terraform-action-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-basic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "7fcf7d33-042e-4d7e-beb0-20fdd732325a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "rebooting", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:13:48.387790+00:00", "modification_date": "2025-12-11T17:13:55.089200+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1801", "node_id": "14"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1886"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:00 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - f6faf787-bbb0-4daa-bce9-ff17f5bb0b63
+ status: 200 OK
+ code: 200
+ duration: 126.335371ms
+ - id: 18
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1886
+ body: '{"server": {"id": "8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf", "name": "test-terraform-action-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-basic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "7fcf7d33-042e-4d7e-beb0-20fdd732325a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "rebooting", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:13:48.387790+00:00", "modification_date": "2025-12-11T17:13:55.089200+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1801", "node_id": "14"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1886"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 3c370ea3-dda2-4b6b-955c-3e7d21a45434
+ status: 200 OK
+ code: 200
+ duration: 97.442908ms
+ - id: 19
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1886
+ body: '{"server": {"id": "8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf", "name": "test-terraform-action-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-basic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "7fcf7d33-042e-4d7e-beb0-20fdd732325a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "rebooting", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:13:48.387790+00:00", "modification_date": "2025-12-11T17:13:55.089200+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1801", "node_id": "14"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1886"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:10 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 2675ccb8-3694-48a7-8ed0-acb913fed158
+ status: 200 OK
+ code: 200
+ duration: 113.76271ms
+ - id: 20
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1886
+ body: '{"server": {"id": "8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf", "name": "test-terraform-action-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-basic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "7fcf7d33-042e-4d7e-beb0-20fdd732325a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "rebooting", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:13:48.387790+00:00", "modification_date": "2025-12-11T17:13:55.089200+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1801", "node_id": "14"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1886"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:16 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 05a7197d-7edb-463e-a659-390330e6ab1e
+ status: 200 OK
+ code: 200
+ duration: 114.755918ms
+ - id: 21
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1886
+ body: '{"server": {"id": "8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf", "name": "test-terraform-action-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-basic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "7fcf7d33-042e-4d7e-beb0-20fdd732325a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "rebooting", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:13:48.387790+00:00", "modification_date": "2025-12-11T17:13:55.089200+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1801", "node_id": "14"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1886"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:21 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - b11199db-7cb9-4b12-a42b-d5d812058da3
+ status: 200 OK
+ code: 200
+ duration: 83.922746ms
+ - id: 22
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1886
+ body: '{"server": {"id": "8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf", "name": "test-terraform-action-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-basic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "7fcf7d33-042e-4d7e-beb0-20fdd732325a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "rebooting", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:13:48.387790+00:00", "modification_date": "2025-12-11T17:13:55.089200+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1801", "node_id": "14"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1886"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:26 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 58b6cace-43cd-4a47-abc7-1ad2d747d637
+ status: 200 OK
+ code: 200
+ duration: 105.216566ms
+ - id: 23
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1925
+ body: '{"server": {"id": "8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf", "name": "test-terraform-action-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-basic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "7fcf7d33-042e-4d7e-beb0-20fdd732325a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:13:48.387790+00:00", "modification_date": "2025-12-11T17:14:29.796668+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1801", "node_id": "14"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1925"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:31 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 6a274c80-94c1-4e53-bc40-3502abee106b
+ status: 200 OK
+ code: 200
+ duration: 98.880043ms
+ - id: 24
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7fcf7d33-042e-4d7e-beb0-20fdd732325a
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "7fcf7d33-042e-4d7e-beb0-20fdd732325a"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:31 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 26f333ab-f6ab-47f2-8235-6840ac5b7796
+ status: 404 Not Found
+ code: 404
+ duration: 36.350882ms
+ - id: 25
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7fcf7d33-042e-4d7e-beb0-20fdd732325a
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"7fcf7d33-042e-4d7e-beb0-20fdd732325a","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T17:13:48.478939Z","updated_at":"2025-12-11T17:13:48.478939Z","references":[{"id":"8403945e-14cc-4fa6-ae7b-cef8a158db77","product_resource_type":"instance_server","product_resource_id":"8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf","created_at":"2025-12-11T17:13:48.478939Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:31 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 33a2e5c7-b15c-44b3-b213-3f62a02d4b89
+ status: 200 OK
+ code: 200
+ duration: 54.950116ms
+ - id: 26
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:31 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 64ba75b0-4d96-40ac-a89c-55b1cb24d182
+ status: 200 OK
+ code: 200
+ duration: 52.353084ms
+ - id: 27
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:31 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 94793772-8210-4c21-845d-e5f4126e1e57
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 53.963461ms
+ - id: 28
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1925
+ body: '{"server": {"id": "8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf", "name": "test-terraform-action-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-basic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "7fcf7d33-042e-4d7e-beb0-20fdd732325a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:13:48.387790+00:00", "modification_date": "2025-12-11T17:14:29.796668+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1801", "node_id": "14"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1925"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:31 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - ad406b9d-0e90-41bf-a7d2-3ca14ebe2b2d
+ status: 200 OK
+ code: 200
+ duration: 117.790183ms
+ - id: 29
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7fcf7d33-042e-4d7e-beb0-20fdd732325a
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "7fcf7d33-042e-4d7e-beb0-20fdd732325a"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:31 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - e4627982-4bca-431b-b6a8-c7fbe00e8c29
+ status: 404 Not Found
+ code: 404
+ duration: 51.153996ms
+ - id: 30
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7fcf7d33-042e-4d7e-beb0-20fdd732325a
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"7fcf7d33-042e-4d7e-beb0-20fdd732325a","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T17:13:48.478939Z","updated_at":"2025-12-11T17:13:48.478939Z","references":[{"id":"8403945e-14cc-4fa6-ae7b-cef8a158db77","product_resource_type":"instance_server","product_resource_id":"8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf","created_at":"2025-12-11T17:13:48.478939Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:31 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 63c12147-068d-4aa5-90c3-b1bc01743b7f
+ status: 200 OK
+ code: 200
+ duration: 50.474379ms
+ - id: 31
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:31 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 4e09383b-8970-4ae3-b1a4-a6749d861ea5
+ status: 200 OK
+ code: 200
+ duration: 53.750878ms
+ - id: 32
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:31 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 1bf743b3-364c-48b0-8381-ad03d58e441d
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 66.892983ms
+ - id: 33
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ method_name:
+ - ServerAction
+ order_by:
+ - recorded_at_desc
+ organization_id:
+ - fa1e3217-dc80-42ac-85c3-3f034b78b552
+ resource_id:
+ - 8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf
+ resource_type:
+ - instance_server
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/audit-trail/v1alpha1/regions/fr-par/events?method_name=ServerAction&order_by=recorded_at_desc&organization_id=11111111-1111-1111-1111-111111111111&resource_id=8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf&resource_type=instance_server
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1651
+ body: '{"events":[{"id":"057c30f2-cb99-45a8-bd89-49a49e0facb9","recorded_at":"2025-12-11T17:13:55.233231Z","locality":"fr-par-1","principal":{"id":"77e7fa85-f305-4ea2-afea-09571a039336"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","source_ip":"51.159.73.145","user_agent":"scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests","product_name":"instance","service_name":"scaleway.instance.v1.Api","method_name":"ServerAction","request_id":"8a0f2a56-3080-454d-ad44-4944e6ece388","request_body":{"action":"reboot"},"status_code":202,"resources":[{"id":"8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf","type":"instance_server","created_at":null,"updated_at":null,"deleted_at":null,"name":"test-terraform-action-server-basic"}]},{"id":"c4984f47-cb82-48c7-a3cb-0c33c49689bd","recorded_at":"2025-12-11T17:13:49.482954Z","locality":"fr-par-1","principal":{"id":"77e7fa85-f305-4ea2-afea-09571a039336"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","source_ip":"51.159.73.145","user_agent":"scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests","product_name":"instance","service_name":"scaleway.instance.v1.Api","method_name":"ServerAction","request_id":"bfc809b4-bc58-490f-afe6-447a03143fff","request_body":{"action":"poweron"},"status_code":202,"resources":[{"id":"8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf","type":"instance_server","created_at":null,"updated_at":null,"deleted_at":null,"name":"test-terraform-action-server-basic"}]}]}'
+ headers:
+ Content-Length:
+ - "1651"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:32 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 4a943e5d-801a-43d9-8fe9-9f363e58ef9a
+ status: 200 OK
+ code: 200
+ duration: 100.653741ms
+ - id: 34
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ method_name:
+ - ServerAction
+ order_by:
+ - recorded_at_desc
+ organization_id:
+ - fa1e3217-dc80-42ac-85c3-3f034b78b552
+ resource_id:
+ - 8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf
+ resource_type:
+ - instance_server
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/audit-trail/v1alpha1/regions/fr-par/events?method_name=ServerAction&order_by=recorded_at_desc&organization_id=11111111-1111-1111-1111-111111111111&resource_id=8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf&resource_type=instance_server
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1651
+ body: '{"events":[{"id":"057c30f2-cb99-45a8-bd89-49a49e0facb9","recorded_at":"2025-12-11T17:13:55.233231Z","locality":"fr-par-1","principal":{"id":"77e7fa85-f305-4ea2-afea-09571a039336"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","source_ip":"51.159.73.145","user_agent":"scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests","product_name":"instance","service_name":"scaleway.instance.v1.Api","method_name":"ServerAction","request_id":"8a0f2a56-3080-454d-ad44-4944e6ece388","request_body":{"action":"reboot"},"status_code":202,"resources":[{"id":"8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf","type":"instance_server","created_at":null,"updated_at":null,"deleted_at":null,"name":"test-terraform-action-server-basic"}]},{"id":"c4984f47-cb82-48c7-a3cb-0c33c49689bd","recorded_at":"2025-12-11T17:13:49.482954Z","locality":"fr-par-1","principal":{"id":"77e7fa85-f305-4ea2-afea-09571a039336"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","source_ip":"51.159.73.145","user_agent":"scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests","product_name":"instance","service_name":"scaleway.instance.v1.Api","method_name":"ServerAction","request_id":"bfc809b4-bc58-490f-afe6-447a03143fff","request_body":{"action":"poweron"},"status_code":202,"resources":[{"id":"8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf","type":"instance_server","created_at":null,"updated_at":null,"deleted_at":null,"name":"test-terraform-action-server-basic"}]}]}'
+ headers:
+ Content-Length:
+ - "1651"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:32 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 4b50b3eb-1252-4f63-8e38-e0161c8f391f
+ status: 200 OK
+ code: 200
+ duration: 105.528505ms
+ - id: 35
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1925
+ body: '{"server": {"id": "8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf", "name": "test-terraform-action-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-basic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "7fcf7d33-042e-4d7e-beb0-20fdd732325a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:13:48.387790+00:00", "modification_date": "2025-12-11T17:14:29.796668+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1801", "node_id": "14"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1925"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:32 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 7d5acfdd-525b-4d25-9833-9d60d8cf571f
+ status: 200 OK
+ code: 200
+ duration: 106.419252ms
+ - id: 36
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7fcf7d33-042e-4d7e-beb0-20fdd732325a
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "7fcf7d33-042e-4d7e-beb0-20fdd732325a"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:32 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 005fdfd1-cac8-4957-884b-2088625fd97a
+ status: 404 Not Found
+ code: 404
+ duration: 33.936249ms
+ - id: 37
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7fcf7d33-042e-4d7e-beb0-20fdd732325a
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"7fcf7d33-042e-4d7e-beb0-20fdd732325a","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T17:13:48.478939Z","updated_at":"2025-12-11T17:13:48.478939Z","references":[{"id":"8403945e-14cc-4fa6-ae7b-cef8a158db77","product_resource_type":"instance_server","product_resource_id":"8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf","created_at":"2025-12-11T17:13:48.478939Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:32 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 3be53ed7-6d38-46e4-adfb-45f44857df4e
+ status: 200 OK
+ code: 200
+ duration: 50.447894ms
+ - id: 38
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:32 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 2cb8702d-828f-47ef-a52d-8fc4e856f75e
+ status: 200 OK
+ code: 200
+ duration: 44.104413ms
+ - id: 39
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:32 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 5a393178-45e1-478e-a668-3ca10c009916
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 46.943994ms
+ - id: 40
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ method_name:
+ - ServerAction
+ order_by:
+ - recorded_at_desc
+ organization_id:
+ - fa1e3217-dc80-42ac-85c3-3f034b78b552
+ resource_id:
+ - 8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf
+ resource_type:
+ - instance_server
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/audit-trail/v1alpha1/regions/fr-par/events?method_name=ServerAction&order_by=recorded_at_desc&organization_id=11111111-1111-1111-1111-111111111111&resource_id=8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf&resource_type=instance_server
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1651
+ body: '{"events":[{"id":"057c30f2-cb99-45a8-bd89-49a49e0facb9","recorded_at":"2025-12-11T17:13:55.233231Z","locality":"fr-par-1","principal":{"id":"77e7fa85-f305-4ea2-afea-09571a039336"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","source_ip":"51.159.73.145","user_agent":"scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests","product_name":"instance","service_name":"scaleway.instance.v1.Api","method_name":"ServerAction","request_id":"8a0f2a56-3080-454d-ad44-4944e6ece388","request_body":{"action":"reboot"},"status_code":202,"resources":[{"id":"8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf","type":"instance_server","created_at":null,"updated_at":null,"deleted_at":null,"name":"test-terraform-action-server-basic"}]},{"id":"c4984f47-cb82-48c7-a3cb-0c33c49689bd","recorded_at":"2025-12-11T17:13:49.482954Z","locality":"fr-par-1","principal":{"id":"77e7fa85-f305-4ea2-afea-09571a039336"},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","source_ip":"51.159.73.145","user_agent":"scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests","product_name":"instance","service_name":"scaleway.instance.v1.Api","method_name":"ServerAction","request_id":"bfc809b4-bc58-490f-afe6-447a03143fff","request_body":{"action":"poweron"},"status_code":202,"resources":[{"id":"8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf","type":"instance_server","created_at":null,"updated_at":null,"deleted_at":null,"name":"test-terraform-action-server-basic"}]}]}'
+ headers:
+ Content-Length:
+ - "1651"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:32 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 92c5305f-fc1c-4f84-8ff0-537aa0e44099
+ status: 200 OK
+ code: 200
+ duration: 84.741874ms
+ - id: 41
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1925
+ body: '{"server": {"id": "8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf", "name": "test-terraform-action-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-basic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "7fcf7d33-042e-4d7e-beb0-20fdd732325a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:13:48.387790+00:00", "modification_date": "2025-12-11T17:14:29.796668+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1801", "node_id": "14"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1925"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:33 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - b3763614-302e-4feb-8100-2014efe119f4
+ status: 200 OK
+ code: 200
+ duration: 89.748539ms
+ - id: 42
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1925
+ body: '{"server": {"id": "8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf", "name": "test-terraform-action-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-basic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "7fcf7d33-042e-4d7e-beb0-20fdd732325a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:13:48.387790+00:00", "modification_date": "2025-12-11T17:14:29.796668+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1801", "node_id": "14"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1925"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:33 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - b5702b11-2d67-4eae-aa10-dff642ef4584
+ status: 200 OK
+ code: 200
+ duration: 120.940665ms
+ - id: 43
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 22
+ host: api.scaleway.com
+ body: '{"action":"terminate"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 353
+ body: '{"task": {"id": "e873d26d-d16f-435c-bc16-46b3c2af14a7", "description": "server_terminate", "status": "pending", "href_from": "/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf/action", "href_result": "/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf", "started_at": "2025-12-11T17:14:33.506968+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "353"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:33 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e873d26d-d16f-435c-bc16-46b3c2af14a7
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 0a82d189-2c9b-433b-b5d0-c5d60ecfe9b7
+ status: 202 Accepted
+ code: 202
+ duration: 222.580275ms
+ - id: 44
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1888
+ body: '{"server": {"id": "8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf", "name": "test-terraform-action-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-basic", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "7fcf7d33-042e-4d7e-beb0-20fdd732325a", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:ab", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:13:48.387790+00:00", "modification_date": "2025-12-11T17:14:33.348605+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "1801", "node_id": "14"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1888"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:33 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 98af6a7b-f82e-4daa-9dc6-f8612ad7642c
+ status: 200 OK
+ code: 200
+ duration: 120.731739ms
+ - id: 45
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:38 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 5465061a-d919-435c-b115-ccd63c5f99e9
+ status: 404 Not Found
+ code: 404
+ duration: 72.631808ms
+ - id: 46
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7fcf7d33-042e-4d7e-beb0-20fdd732325a
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "7fcf7d33-042e-4d7e-beb0-20fdd732325a"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:38 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - a390217e-f9b0-4535-aeb2-fa8af1b120d0
+ status: 404 Not Found
+ code: 404
+ duration: 36.112989ms
+ - id: 47
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7fcf7d33-042e-4d7e-beb0-20fdd732325a
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 484
+ body: '{"id":"7fcf7d33-042e-4d7e-beb0-20fdd732325a","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T17:13:48.478939Z","updated_at":"2025-12-11T17:14:34.838368Z","references":[],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"available","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":"2025-12-11T17:14:34.838368Z","zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "484"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:38 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - c38c7c91-af2d-4c58-87a3-7bf3a7c3f29d
+ status: 200 OK
+ code: 200
+ duration: 45.851502ms
+ - id: 48
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7fcf7d33-042e-4d7e-beb0-20fdd732325a
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:38 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 785449d0-2be4-443d-89b7-e4b9cf61edc3
+ status: 204 No Content
+ code: 204
+ duration: 81.752018ms
+ - id: 49
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "8a48cc1a-43a8-4e8e-be66-e3c3e8c3eddf"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:38 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ X-Request-Id:
+ - 85fb3edb-26ac-4f0b-b7e6-ab69294142cc
+ status: 404 Not Found
+ code: 404
+ duration: 53.255667ms
diff --git a/internal/services/instance/testdata/action-server-on-off.cassette.yaml b/internal/services/instance/testdata/action-server-on-off.cassette.yaml
new file mode 100644
index 000000000..202c814c3
--- /dev/null
+++ b/internal/services/instance/testdata/action-server-on-off.cassette.yaml
@@ -0,0 +1,4001 @@
+---
+version: 2
+interactions:
+ - id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ page:
+ - "1"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 39202
+ body: '{"servers": {"BASIC2-A16C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.89, "hourly_price": 0.2067, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 201.19, "hourly_price": 0.2756, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A2C-4G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 16.79, "hourly_price": 0.023, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 25.19, "hourly_price": 0.0345, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 50.3, "hourly_price": 0.0689, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A4C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 37.74, "hourly_price": 0.0517, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A8C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.48, "hourly_price": 0.1034, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "BASIC2-A8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 100.59, "hourly_price": 0.1378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 30.66, "hourly_price": 0.042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.454, "hourly_price": 0.0198, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.424, "hourly_price": 0.0088, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 46.5734, "hourly_price": 0.06378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 554.07, "hourly_price": 0.759, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 274.48, "hourly_price": 0.376, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 136.51, "hourly_price": 0.187, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1197.93, "hourly_price": 1.641, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 66.43, "hourly_price": 0.091, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}}}'
+ headers:
+ Content-Length:
+ - "39202"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:03 GMT
+ Link:
+ - ; rel="next",; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 5a1e2302-7e6b-434f-87c3-c6bf9a455cc6
+ X-Total-Count:
+ - "76"
+ status: 200 OK
+ code: 200
+ duration: 105.980046ms
+ - id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ page:
+ - "2"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20510
+ body: '{"servers": {"POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 891.33, "hourly_price": 1.221, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 0.1095, "hourly_price": 0.00015, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}'
+ headers:
+ Content-Length:
+ - "20510"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:03 GMT
+ Link:
+ - ; rel="first",; rel="previous",; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - c4c2220a-0ae4-4e25-8166-732ef91f6224
+ X-Total-Count:
+ - "76"
+ status: 200 OK
+ code: 200
+ duration: 53.616535ms
+ - id: 2
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ image_label:
+ - ubuntu_jammy
+ order_by:
+ - type_asc
+ type:
+ - instance_sbs
+ zone:
+ - fr-par-1
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/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
+ content_length: 1320
+ body: '{"local_images":[{"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff","arch":"arm64","zone":"fr-par-1","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G","BASIC2-A2C-4G","BASIC2-A2C-8G","BASIC2-A4C-8G","BASIC2-A4C-16G","BASIC2-A8C-16G","BASIC2-A8C-32G","BASIC2-A16C-32G","BASIC2-A16C-64G"],"label":"ubuntu_jammy","type":"instance_sbs"},{"id":"6d3c053e-c728-4294-b23a-560b62a4d592","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-48C-192G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-48C-384G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"label":"ubuntu_jammy","type":"instance_sbs"}],"total_count":2}'
+ headers:
+ Content-Length:
+ - "1320"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:03 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 71b262dd-6fe3-4c4b-8c58-be9b51ceb62b
+ status: 200 OK
+ code: 200
+ duration: 56.554723ms
+ - id: 3
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 248
+ host: api.scaleway.com
+ body: '{"name":"test-terraform-action-server-on-off","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1770
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "test-terraform-action-server-on-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-on-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:03.914771+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1770"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:04 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - f8cbf702-ee5c-4de0-8c44-8c90919b5155
+ status: 201 Created
+ code: 201
+ duration: 467.975017ms
+ - id: 4
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1770
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "test-terraform-action-server-on-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-on-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:03.914771+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1770"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:04 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - f4c9d04b-4389-405e-bc8b-01b2bef8a97b
+ status: 200 OK
+ code: 200
+ duration: 95.509711ms
+ - id: 5
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1770
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "test-terraform-action-server-on-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-on-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:03.914771+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1770"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:04 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 2d61b153-f53c-4537-8ada-387f6a111114
+ status: 200 OK
+ code: 200
+ duration: 78.222545ms
+ - id: 6
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"a288842a-4664-4494-83ad-3b58812f82b7","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T17:14:03.976875Z","updated_at":"2025-12-11T17:14:03.976875Z","references":[{"id":"ad94c4e7-bcf3-4c2d-a09b-d7709100aa94","product_resource_type":"instance_server","product_resource_id":"ed08153f-2c7f-4e90-941d-1c81611a4345","created_at":"2025-12-11T17:14:03.976875Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:04 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - b510dfd7-30ff-46c9-8030-448358804f26
+ status: 200 OK
+ code: 200
+ duration: 46.011911ms
+ - id: 7
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 20
+ host: api.scaleway.com
+ body: '{"action":"poweron"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 357
+ body: '{"task": {"id": "b207828e-4479-40a6-8465-9116b5ccbf26", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/action", "href_result": "/servers/ed08153f-2c7f-4e90-941d-1c81611a4345", "started_at": "2025-12-11T17:14:04.716027+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "357"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:04 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b207828e-4479-40a6-8465-9116b5ccbf26
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 43a36896-4165-4ecb-8c54-e6e6e3e3205f
+ status: 202 Accepted
+ code: 202
+ duration: 248.014752ms
+ - id: 8
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1792
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "test-terraform-action-server-on-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-on-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:04.537940+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1792"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:04 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - cc4ea167-2245-474b-956d-6ecfc4bfe30d
+ status: 200 OK
+ code: 200
+ duration: 111.49423ms
+ - id: 9
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1925
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "test-terraform-action-server-on-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-on-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:07.190733+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "203", "node_id": "7"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1925"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:09 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 84eaf2e6-3cd7-40ce-ac1c-4b18db8a2e96
+ status: 200 OK
+ code: 200
+ duration: 119.338986ms
+ - id: 10
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1925
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "test-terraform-action-server-on-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-on-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:07.190733+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "203", "node_id": "7"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1925"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:10 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - c5277819-a5da-48c0-877c-7f24174e5296
+ status: 200 OK
+ code: 200
+ duration: 104.088383ms
+ - id: 11
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a288842a-4664-4494-83ad-3b58812f82b7"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:10 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 0494d80f-071d-4b3b-bf6c-33c42d6ae76e
+ status: 404 Not Found
+ code: 404
+ duration: 30.182401ms
+ - id: 12
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"a288842a-4664-4494-83ad-3b58812f82b7","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T17:14:03.976875Z","updated_at":"2025-12-11T17:14:03.976875Z","references":[{"id":"ad94c4e7-bcf3-4c2d-a09b-d7709100aa94","product_resource_type":"instance_server","product_resource_id":"ed08153f-2c7f-4e90-941d-1c81611a4345","created_at":"2025-12-11T17:14:03.976875Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:10 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 1fd6b2d1-17c7-463f-99f9-e4c6b16929f4
+ status: 200 OK
+ code: 200
+ duration: 64.985239ms
+ - id: 13
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:10 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 695e89fa-ce71-4c0c-901c-f719807e9c17
+ status: 200 OK
+ code: 200
+ duration: 38.302334ms
+ - id: 14
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:10 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 3b48604e-a6cb-42a5-8e6f-05c805276d76
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 70.569277ms
+ - id: 15
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 26
+ host: api.scaleway.com
+ body: '{"action":"stop_in_place"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 357
+ body: '{"task": {"id": "94308386-c76c-49f2-b518-b34d362f1c5b", "description": "server_stop_in_place", "status": "pending", "href_from": "/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/action", "href_result": "/servers/ed08153f-2c7f-4e90-941d-1c81611a4345", "started_at": "2025-12-11T17:14:10.469498+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "357"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:10 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/94308386-c76c-49f2-b518-b34d362f1c5b
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 73a53d87-7424-470d-9e13-d8df9ec26358
+ status: 202 Accepted
+ code: 202
+ duration: 181.998935ms
+ - id: 16
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1894
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "test-terraform-action-server-on-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-on-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:10.350488+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "203", "node_id": "7"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1894"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:10 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 6e664386-ae74-40d1-9154-5c3926d397b2
+ status: 200 OK
+ code: 200
+ duration: 126.35675ms
+ - id: 17
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1894
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "test-terraform-action-server-on-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-on-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:10.350488+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "203", "node_id": "7"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1894"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:15 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 1854b744-61b5-49d8-af81-776aa0a6a85a
+ status: 200 OK
+ code: 200
+ duration: 101.98368ms
+ - id: 18
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1894
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "test-terraform-action-server-on-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-on-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:10.350488+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "203", "node_id": "7"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1894"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:20 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 504a41c0-38b7-4636-9281-3e3b44a9236e
+ status: 200 OK
+ code: 200
+ duration: 135.258654ms
+ - id: 19
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1894
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "test-terraform-action-server-on-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-on-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:10.350488+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "203", "node_id": "7"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1894"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:25 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 3c911d81-f020-4110-be3e-81008532b1f3
+ status: 200 OK
+ code: 200
+ duration: 95.404457ms
+ - id: 20
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1894
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "test-terraform-action-server-on-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-on-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:10.350488+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "203", "node_id": "7"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1894"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:31 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - dbac751d-1445-4e93-89f8-b01f20284908
+ status: 200 OK
+ code: 200
+ duration: 106.423694ms
+ - id: 21
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1894
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "test-terraform-action-server-on-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-on-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:10.350488+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "203", "node_id": "7"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1894"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:36 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 33a334a0-b03e-4d20-87f4-9d3213d1b45f
+ status: 200 OK
+ code: 200
+ duration: 78.01231ms
+ - id: 22
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1894
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "test-terraform-action-server-on-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-on-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:10.350488+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "203", "node_id": "7"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1894"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:41 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 7b438bc2-007e-4b86-86bf-580f636647d9
+ status: 200 OK
+ code: 200
+ duration: 193.410894ms
+ - id: 23
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1930
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "test-terraform-action-server-on-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-on-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:43.224927+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "203", "node_id": "7"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1930"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:46 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - eada9830-fb22-4cf5-9628-d71951ee3cee
+ status: 200 OK
+ code: 200
+ duration: 131.389152ms
+ - id: 24
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1930
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "test-terraform-action-server-on-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-on-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:43.224927+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "203", "node_id": "7"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1930"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:46 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 6bce7d6b-17c7-4483-b188-8940f50e8639
+ status: 200 OK
+ code: 200
+ duration: 98.849176ms
+ - id: 25
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a288842a-4664-4494-83ad-3b58812f82b7"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:46 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 2ae165d6-11b3-4385-a82e-2ce6b6ca7015
+ status: 404 Not Found
+ code: 404
+ duration: 102.217187ms
+ - id: 26
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"a288842a-4664-4494-83ad-3b58812f82b7","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T17:14:03.976875Z","updated_at":"2025-12-11T17:14:03.976875Z","references":[{"id":"ad94c4e7-bcf3-4c2d-a09b-d7709100aa94","product_resource_type":"instance_server","product_resource_id":"ed08153f-2c7f-4e90-941d-1c81611a4345","created_at":"2025-12-11T17:14:03.976875Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:46 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 3d602206-07e0-4ad8-be83-80cbab0b1cdd
+ status: 200 OK
+ code: 200
+ duration: 100.957479ms
+ - id: 27
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:47 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 97f9ee3a-d1ef-4ee5-a5c8-b0c9763229ab
+ status: 200 OK
+ code: 200
+ duration: 102.989182ms
+ - id: 28
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:47 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 1ebbc384-8c1c-405c-b453-b9b70f337fc0
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 100.12375ms
+ - id: 29
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1930
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "test-terraform-action-server-on-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-on-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:43.224927+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "203", "node_id": "7"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1930"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:47 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - b9532664-349f-451f-be47-0b4f9696e4b8
+ status: 200 OK
+ code: 200
+ duration: 140.780558ms
+ - id: 30
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a288842a-4664-4494-83ad-3b58812f82b7"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:47 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - e8b4df64-acdc-4c31-b018-3e8895dc7e0d
+ status: 404 Not Found
+ code: 404
+ duration: 103.858591ms
+ - id: 31
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"a288842a-4664-4494-83ad-3b58812f82b7","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T17:14:03.976875Z","updated_at":"2025-12-11T17:14:03.976875Z","references":[{"id":"ad94c4e7-bcf3-4c2d-a09b-d7709100aa94","product_resource_type":"instance_server","product_resource_id":"ed08153f-2c7f-4e90-941d-1c81611a4345","created_at":"2025-12-11T17:14:03.976875Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:47 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 5386fe50-0408-4cc8-9b06-8960b1b58fa8
+ status: 200 OK
+ code: 200
+ duration: 99.322347ms
+ - id: 32
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:47 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - aa6da249-e7aa-42de-9104-495109dc1e58
+ status: 200 OK
+ code: 200
+ duration: 100.984443ms
+ - id: 33
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:47 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - e8f25481-eafb-4088-89f0-ecea36e41fb9
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 125.125451ms
+ - id: 34
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1930
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "test-terraform-action-server-on-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-on-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:43.224927+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "203", "node_id": "7"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1930"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:48 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - d143fa2a-12ce-4438-baf5-3e7786b7daa7
+ status: 200 OK
+ code: 200
+ duration: 110.105958ms
+ - id: 35
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1930
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "test-terraform-action-server-on-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-on-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:43.224927+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "203", "node_id": "7"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1930"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:48 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - c0e966c3-9bc8-4200-8799-e82418522862
+ status: 200 OK
+ code: 200
+ duration: 168.9168ms
+ - id: 36
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a288842a-4664-4494-83ad-3b58812f82b7"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:48 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 50b2c36e-3591-48a3-8413-b2c3d710e2c5
+ status: 404 Not Found
+ code: 404
+ duration: 218.024047ms
+ - id: 37
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"a288842a-4664-4494-83ad-3b58812f82b7","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T17:14:03.976875Z","updated_at":"2025-12-11T17:14:03.976875Z","references":[{"id":"ad94c4e7-bcf3-4c2d-a09b-d7709100aa94","product_resource_type":"instance_server","product_resource_id":"ed08153f-2c7f-4e90-941d-1c81611a4345","created_at":"2025-12-11T17:14:03.976875Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:48 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - e395a019-163f-4696-9d01-a693aed99f97
+ status: 200 OK
+ code: 200
+ duration: 49.661382ms
+ - id: 38
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:48 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 7af47a31-2e28-4d1c-a682-e9a881af052e
+ status: 200 OK
+ code: 200
+ duration: 137.429918ms
+ - id: 39
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:48 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 82152757-797f-452c-9773-084f2ee69f34
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 61.199101ms
+ - id: 40
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1930
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "test-terraform-action-server-on-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-on-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:43.224927+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "203", "node_id": "7"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1930"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:49 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 927c01b0-ce04-4358-b27c-269837e404a9
+ status: 200 OK
+ code: 200
+ duration: 136.856264ms
+ - id: 41
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a288842a-4664-4494-83ad-3b58812f82b7"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:49 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 486a3d87-cbc3-4389-a770-37b5c542a8aa
+ status: 404 Not Found
+ code: 404
+ duration: 34.976833ms
+ - id: 42
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"a288842a-4664-4494-83ad-3b58812f82b7","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T17:14:03.976875Z","updated_at":"2025-12-11T17:14:03.976875Z","references":[{"id":"ad94c4e7-bcf3-4c2d-a09b-d7709100aa94","product_resource_type":"instance_server","product_resource_id":"ed08153f-2c7f-4e90-941d-1c81611a4345","created_at":"2025-12-11T17:14:03.976875Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:49 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 96748910-2d63-49fd-ba93-292329904fbd
+ status: 200 OK
+ code: 200
+ duration: 52.83042ms
+ - id: 43
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:49 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - ca024247-60a7-4a1e-8966-5d0c629fe6b2
+ status: 200 OK
+ code: 200
+ duration: 108.977707ms
+ - id: 44
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:49 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 0b57e781-c08d-4610-805c-e75068a3dd24
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 60.60211ms
+ - id: 45
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1930
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "test-terraform-action-server-on-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-on-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:43.224927+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "203", "node_id": "7"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1930"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:49 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - fa09e93d-593c-4e02-bc08-bf3ada072b5b
+ status: 200 OK
+ code: 200
+ duration: 143.221493ms
+ - id: 46
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 32
+ host: api.scaleway.com
+ body: '{"name":"should-be-powered-off"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: PATCH
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1902
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-powered-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-powered-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:49.702802+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "203", "node_id": "7"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1902"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:49 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - ef360d41-6de4-4de9-9748-54b15416b75c
+ status: 200 OK
+ code: 200
+ duration: 200.490657ms
+ - id: 47
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1902
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-powered-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-powered-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:49.702802+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "203", "node_id": "7"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1902"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:49 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 9b486f72-e7d3-451e-941d-fbf5b3b65237
+ status: 200 OK
+ code: 200
+ duration: 81.670016ms
+ - id: 48
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1902
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-powered-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-powered-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:49.702802+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "203", "node_id": "7"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1902"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 88ef87e6-352f-4e55-8541-1d053252c10a
+ status: 200 OK
+ code: 200
+ duration: 122.081248ms
+ - id: 49
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a288842a-4664-4494-83ad-3b58812f82b7"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - bab1bbea-6cef-4e6c-9523-16869f70d26e
+ status: 404 Not Found
+ code: 404
+ duration: 36.900324ms
+ - id: 50
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"a288842a-4664-4494-83ad-3b58812f82b7","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T17:14:03.976875Z","updated_at":"2025-12-11T17:14:03.976875Z","references":[{"id":"ad94c4e7-bcf3-4c2d-a09b-d7709100aa94","product_resource_type":"instance_server","product_resource_id":"ed08153f-2c7f-4e90-941d-1c81611a4345","created_at":"2025-12-11T17:14:03.976875Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 090e48de-58c1-4e16-909f-2f9118065564
+ status: 200 OK
+ code: 200
+ duration: 131.928475ms
+ - id: 51
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 82abe871-418d-434d-95b8-8ca5fed11d04
+ status: 200 OK
+ code: 200
+ duration: 135.108229ms
+ - id: 52
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:50 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 63ca3afc-c3ac-4668-85d4-0cc04e2273ba
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 50.914658ms
+ - id: 53
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 21
+ host: api.scaleway.com
+ body: '{"action":"poweroff"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 352
+ body: '{"task": {"id": "5373503c-bfb3-4253-a9c2-75fa43d19be0", "description": "server_poweroff", "status": "pending", "href_from": "/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/action", "href_result": "/servers/ed08153f-2c7f-4e90-941d-1c81611a4345", "started_at": "2025-12-11T17:14:50.787515+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "352"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:50 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5373503c-bfb3-4253-a9c2-75fa43d19be0
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 769064ca-3d0d-4d12-ab93-d87018ea9dd7
+ status: 202 Accepted
+ code: 202
+ duration: 432.751701ms
+ - id: 54
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1857
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-powered-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-powered-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:50.429513+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "203", "node_id": "7"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1857"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:51 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - bc305157-b44b-4c7a-84e2-59d5f30791b9
+ status: 200 OK
+ code: 200
+ duration: 286.060256ms
+ - id: 55
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1742
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-powered-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-powered-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:51.100904+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1742"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:56 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 9b0f2628-9c66-4e69-844a-a71dce90e86b
+ status: 200 OK
+ code: 200
+ duration: 95.238256ms
+ - id: 56
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1742
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-powered-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-powered-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:51.100904+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1742"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:56 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 1f3399a6-a05b-44ea-95c7-b963bb81eb4c
+ status: 200 OK
+ code: 200
+ duration: 101.831801ms
+ - id: 57
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a288842a-4664-4494-83ad-3b58812f82b7"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:56 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 8a951577-7712-4d70-9b4f-0e6f5c99ef2c
+ status: 404 Not Found
+ code: 404
+ duration: 27.149321ms
+ - id: 58
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"a288842a-4664-4494-83ad-3b58812f82b7","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T17:14:03.976875Z","updated_at":"2025-12-11T17:14:03.976875Z","references":[{"id":"ad94c4e7-bcf3-4c2d-a09b-d7709100aa94","product_resource_type":"instance_server","product_resource_id":"ed08153f-2c7f-4e90-941d-1c81611a4345","created_at":"2025-12-11T17:14:03.976875Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:56 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 9e0b7ac3-a70b-421d-a4aa-83a268076162
+ status: 200 OK
+ code: 200
+ duration: 52.972457ms
+ - id: 59
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:56 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 75eb59cd-de1a-4fb1-be29-94215f3bf129
+ status: 200 OK
+ code: 200
+ duration: 43.842808ms
+ - id: 60
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:56 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 2a12ff43-8d34-46dd-b33a-7de80af76961
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 53.9037ms
+ - id: 61
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1742
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-powered-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-powered-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:51.100904+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1742"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:56 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 3c71d952-f5a2-462d-89b0-6389b3b39f10
+ status: 200 OK
+ code: 200
+ duration: 122.39943ms
+ - id: 62
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a288842a-4664-4494-83ad-3b58812f82b7"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:57 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 59081a89-6d48-4689-b27a-42b52fab8264
+ status: 404 Not Found
+ code: 404
+ duration: 34.116829ms
+ - id: 63
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"a288842a-4664-4494-83ad-3b58812f82b7","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T17:14:03.976875Z","updated_at":"2025-12-11T17:14:03.976875Z","references":[{"id":"ad94c4e7-bcf3-4c2d-a09b-d7709100aa94","product_resource_type":"instance_server","product_resource_id":"ed08153f-2c7f-4e90-941d-1c81611a4345","created_at":"2025-12-11T17:14:03.976875Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:57 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 09ef6a90-91c5-4afe-a5e5-1f1efa086626
+ status: 200 OK
+ code: 200
+ duration: 67.116681ms
+ - id: 64
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:57 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 01e72b79-f4bb-4445-a4c9-dd42cb6d7cd8
+ status: 200 OK
+ code: 200
+ duration: 55.432103ms
+ - id: 65
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:57 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 58a1c13f-0b0d-41c2-9b0e-1dd349261f3e
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 67.761865ms
+ - id: 66
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1742
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-powered-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-powered-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:51.100904+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1742"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:57 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 89cbe424-ffad-4004-b785-91b4403f5c48
+ status: 200 OK
+ code: 200
+ duration: 116.396364ms
+ - id: 67
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1742
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-powered-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-powered-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:51.100904+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1742"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:57 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - ea908de3-a269-4266-9270-dcc8ac0f5351
+ status: 200 OK
+ code: 200
+ duration: 102.867252ms
+ - id: 68
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a288842a-4664-4494-83ad-3b58812f82b7"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:57 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - a61c5ed0-5766-4edf-94e9-5a8e31b6ef98
+ status: 404 Not Found
+ code: 404
+ duration: 37.780261ms
+ - id: 69
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"a288842a-4664-4494-83ad-3b58812f82b7","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T17:14:03.976875Z","updated_at":"2025-12-11T17:14:03.976875Z","references":[{"id":"ad94c4e7-bcf3-4c2d-a09b-d7709100aa94","product_resource_type":"instance_server","product_resource_id":"ed08153f-2c7f-4e90-941d-1c81611a4345","created_at":"2025-12-11T17:14:03.976875Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:57 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 60a64fe4-f566-4ef7-8707-03d60d0313d0
+ status: 200 OK
+ code: 200
+ duration: 33.046086ms
+ - id: 70
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:57 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - a1b06382-d903-466e-a703-c8fd18d504e2
+ status: 200 OK
+ code: 200
+ duration: 47.521721ms
+ - id: 71
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:57 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 06473594-a874-4455-a947-28cdbd82bfd6
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 57.427356ms
+ - id: 72
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1742
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-powered-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-powered-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:51.100904+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1742"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:57 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 20c4333b-725b-4c1f-9a18-cc468ffb5e65
+ status: 200 OK
+ code: 200
+ duration: 97.283248ms
+ - id: 73
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a288842a-4664-4494-83ad-3b58812f82b7"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 1d9405ec-9029-4a7a-9cd0-9ed4b0a5bf54
+ status: 404 Not Found
+ code: 404
+ duration: 39.398928ms
+ - id: 74
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"a288842a-4664-4494-83ad-3b58812f82b7","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T17:14:03.976875Z","updated_at":"2025-12-11T17:14:03.976875Z","references":[{"id":"ad94c4e7-bcf3-4c2d-a09b-d7709100aa94","product_resource_type":"instance_server","product_resource_id":"ed08153f-2c7f-4e90-941d-1c81611a4345","created_at":"2025-12-11T17:14:03.976875Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - d3e4dd90-2532-4799-912a-b8669aaecae0
+ status: 200 OK
+ code: 200
+ duration: 41.07481ms
+ - id: 75
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 2b744ee7-da56-40aa-96a0-b45875d8f2ff
+ status: 200 OK
+ code: 200
+ duration: 37.721884ms
+ - id: 76
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:58 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - f62dfe15-fa5e-4340-b82d-343b9dfe321e
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 43.148169ms
+ - id: 77
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1742
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-powered-off", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-powered-off", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:51.100904+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1742"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 81fcee0c-27b1-42f4-827f-20005daee9d4
+ status: 200 OK
+ code: 200
+ duration: 88.402676ms
+ - id: 78
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 28
+ host: api.scaleway.com
+ body: '{"name":"should-be-started"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: PATCH
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1734
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-started", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-started", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:58.398116+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1734"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - f61b5c13-ca9d-4f6b-9bb2-02c88d5f4e64
+ status: 200 OK
+ code: 200
+ duration: 159.971372ms
+ - id: 79
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1734
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-started", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-started", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:58.398116+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1734"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 63c31cb0-50c5-42a3-947f-c348310c6593
+ status: 200 OK
+ code: 200
+ duration: 129.118862ms
+ - id: 80
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1734
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-started", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-started", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:58.398116+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1734"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 836f2a39-5f83-40e1-ac5a-f18bd31a8c6c
+ status: 200 OK
+ code: 200
+ duration: 119.848533ms
+ - id: 81
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a288842a-4664-4494-83ad-3b58812f82b7"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 81e721a5-5b8d-45bf-96f4-95b0488eb639
+ status: 404 Not Found
+ code: 404
+ duration: 39.926856ms
+ - id: 82
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"a288842a-4664-4494-83ad-3b58812f82b7","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T17:14:03.976875Z","updated_at":"2025-12-11T17:14:03.976875Z","references":[{"id":"ad94c4e7-bcf3-4c2d-a09b-d7709100aa94","product_resource_type":"instance_server","product_resource_id":"ed08153f-2c7f-4e90-941d-1c81611a4345","created_at":"2025-12-11T17:14:03.976875Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - abb8c0a5-d819-4543-bccb-ad83ffee8edf
+ status: 200 OK
+ code: 200
+ duration: 40.904154ms
+ - id: 83
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:58 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 6dbe071a-a554-4887-9031-d74c81e9a00b
+ status: 200 OK
+ code: 200
+ duration: 41.769587ms
+ - id: 84
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:58 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - eaf31570-f28d-42d0-b00a-20938d6d80e3
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 60.927288ms
+ - id: 85
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 20
+ host: api.scaleway.com
+ body: '{"action":"poweron"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 357
+ body: '{"task": {"id": "d5c27ae0-bdd9-4d34-a14b-e68b4483e8ad", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/action", "href_result": "/servers/ed08153f-2c7f-4e90-941d-1c81611a4345", "started_at": "2025-12-11T17:14:59.143725+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "357"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:59 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d5c27ae0-bdd9-4d34-a14b-e68b4483e8ad
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - faadd8c9-3d6d-4b7f-92dd-b34b0117b30d
+ status: 202 Accepted
+ code: 202
+ duration: 223.714625ms
+ - id: 86
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1756
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-started", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-started", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:14:58.977246+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1756"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:14:59 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 629ef007-92a0-4608-a883-1aa500c2468b
+ status: 200 OK
+ code: 200
+ duration: 70.771445ms
+ - id: 87
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1890
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-started", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-started", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:15:02.864344+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "902", "node_id": "48"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1890"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:04 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 7d8f2dd5-0f91-4f47-a613-0180065bc5cf
+ status: 200 OK
+ code: 200
+ duration: 117.96969ms
+ - id: 88
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1890
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-started", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-started", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:15:02.864344+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "902", "node_id": "48"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1890"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:04 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 1750d2c1-053c-43b1-9958-e432352d8646
+ status: 200 OK
+ code: 200
+ duration: 129.966522ms
+ - id: 89
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a288842a-4664-4494-83ad-3b58812f82b7"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:04 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 96f220f6-d120-453a-959f-741bba139d7a
+ status: 404 Not Found
+ code: 404
+ duration: 34.607693ms
+ - id: 90
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"a288842a-4664-4494-83ad-3b58812f82b7","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T17:14:03.976875Z","updated_at":"2025-12-11T17:14:03.976875Z","references":[{"id":"ad94c4e7-bcf3-4c2d-a09b-d7709100aa94","product_resource_type":"instance_server","product_resource_id":"ed08153f-2c7f-4e90-941d-1c81611a4345","created_at":"2025-12-11T17:14:03.976875Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:04 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 704a2a06-175d-4398-b920-7b06c110f8f8
+ status: 200 OK
+ code: 200
+ duration: 56.986324ms
+ - id: 91
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:04 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 699adccf-c93a-4fdc-be7c-f080cbd07be2
+ status: 200 OK
+ code: 200
+ duration: 65.800694ms
+ - id: 92
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:04 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 074071e3-9121-4b9c-bcf5-df978a546817
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 48.977929ms
+ - id: 93
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1890
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-started", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-started", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:15:02.864344+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "902", "node_id": "48"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1890"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - b8759214-09d8-4826-849f-2416550f6b78
+ status: 200 OK
+ code: 200
+ duration: 99.314839ms
+ - id: 94
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a288842a-4664-4494-83ad-3b58812f82b7"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 08f6ea4b-6e27-4424-b36b-b69ca19c20ba
+ status: 404 Not Found
+ code: 404
+ duration: 33.453639ms
+ - id: 95
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"a288842a-4664-4494-83ad-3b58812f82b7","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T17:14:03.976875Z","updated_at":"2025-12-11T17:14:03.976875Z","references":[{"id":"ad94c4e7-bcf3-4c2d-a09b-d7709100aa94","product_resource_type":"instance_server","product_resource_id":"ed08153f-2c7f-4e90-941d-1c81611a4345","created_at":"2025-12-11T17:14:03.976875Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 647f4faf-eafd-4a63-bb3b-9513e060f678
+ status: 200 OK
+ code: 200
+ duration: 32.843158ms
+ - id: 96
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - e576eac0-dd6e-479c-9877-4265a1775f22
+ status: 200 OK
+ code: 200
+ duration: 48.76106ms
+ - id: 97
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:05 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 3ec25adc-7aaa-45bc-b2bd-80879acb9bd6
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 92.636705ms
+ - id: 98
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1890
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-started", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-started", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:15:02.864344+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "902", "node_id": "48"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1890"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - aabc211d-99ba-4b67-91c6-3717bdf71116
+ status: 200 OK
+ code: 200
+ duration: 128.5247ms
+ - id: 99
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1890
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-started", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-started", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:15:02.864344+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "902", "node_id": "48"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1890"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - f7c2d64f-0cb7-4bf2-a9f3-57b8735781b7
+ status: 200 OK
+ code: 200
+ duration: 105.923023ms
+ - id: 100
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a288842a-4664-4494-83ad-3b58812f82b7"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 0c889a28-f92e-45ba-9424-b615521171cd
+ status: 404 Not Found
+ code: 404
+ duration: 40.733417ms
+ - id: 101
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"a288842a-4664-4494-83ad-3b58812f82b7","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T17:14:03.976875Z","updated_at":"2025-12-11T17:14:03.976875Z","references":[{"id":"ad94c4e7-bcf3-4c2d-a09b-d7709100aa94","product_resource_type":"instance_server","product_resource_id":"ed08153f-2c7f-4e90-941d-1c81611a4345","created_at":"2025-12-11T17:14:03.976875Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 9d39fa40-33cd-4ade-8ffe-088196ccef3f
+ status: 200 OK
+ code: 200
+ duration: 52.323736ms
+ - id: 102
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 737ae24d-6f34-40d7-8d17-f439c462e345
+ status: 200 OK
+ code: 200
+ duration: 59.546739ms
+ - id: 103
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:05 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 89370aff-dd97-4e50-b70d-84ed324be0b2
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 48.855014ms
+ - id: 104
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1890
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-started", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-started", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:15:02.864344+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "902", "node_id": "48"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1890"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:06 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 5cd87329-368a-4dd9-a0c8-a19e9e2a8c03
+ status: 200 OK
+ code: 200
+ duration: 109.304902ms
+ - id: 105
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a288842a-4664-4494-83ad-3b58812f82b7"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:06 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 157caa05-bef6-43f7-83c8-7b262cbe8ed6
+ status: 404 Not Found
+ code: 404
+ duration: 37.813894ms
+ - id: 106
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"a288842a-4664-4494-83ad-3b58812f82b7","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T17:14:03.976875Z","updated_at":"2025-12-11T17:14:03.976875Z","references":[{"id":"ad94c4e7-bcf3-4c2d-a09b-d7709100aa94","product_resource_type":"instance_server","product_resource_id":"ed08153f-2c7f-4e90-941d-1c81611a4345","created_at":"2025-12-11T17:14:03.976875Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:06 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 9dd28945-6454-43dd-a311-fac050fe01de
+ status: 200 OK
+ code: 200
+ duration: 49.486426ms
+ - id: 107
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:06 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - d32228d5-c03a-49ad-a8df-57813582fafb
+ status: 200 OK
+ code: 200
+ duration: 54.455647ms
+ - id: 108
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:06 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 1ad39524-ccd8-4089-8824-e80ed4f086d9
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 61.420092ms
+ - id: 109
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1890
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-started", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-started", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:15:02.864344+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "902", "node_id": "48"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1890"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:06 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - a445ba80-3ea8-49c0-b5a4-da8d3805c5b4
+ status: 200 OK
+ code: 200
+ duration: 118.961762ms
+ - id: 110
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 31
+ host: api.scaleway.com
+ body: '{"name":"should-be-terminated"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: PATCH
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1896
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-terminated", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-terminated", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:15:06.723219+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "902", "node_id": "48"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1896"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:06 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 5df3c523-66c4-451a-83cc-c083d550e571
+ status: 200 OK
+ code: 200
+ duration: 240.157792ms
+ - id: 111
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1896
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-terminated", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-terminated", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:15:06.723219+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "902", "node_id": "48"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1896"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:06 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 7f10aa4b-ab4c-4cf2-b5f2-222f2ca4789c
+ status: 200 OK
+ code: 200
+ duration: 132.718625ms
+ - id: 112
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1896
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-terminated", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-terminated", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:15:06.723219+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "902", "node_id": "48"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1896"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 0a00793c-03bc-435a-b174-2f38db761e59
+ status: 200 OK
+ code: 200
+ duration: 131.617534ms
+ - id: 113
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a288842a-4664-4494-83ad-3b58812f82b7"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 18f9283f-35d4-43f2-a086-2d83daed2154
+ status: 404 Not Found
+ code: 404
+ duration: 41.452083ms
+ - id: 114
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a288842a-4664-4494-83ad-3b58812f82b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"a288842a-4664-4494-83ad-3b58812f82b7","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T17:14:03.976875Z","updated_at":"2025-12-11T17:14:03.976875Z","references":[{"id":"ad94c4e7-bcf3-4c2d-a09b-d7709100aa94","product_resource_type":"instance_server","product_resource_id":"ed08153f-2c7f-4e90-941d-1c81611a4345","created_at":"2025-12-11T17:14:03.976875Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - d0730c92-fa95-42d7-b1a9-f3d6a0a917b8
+ status: 200 OK
+ code: 200
+ duration: 45.2846ms
+ - id: 115
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 3881bdf5-f22c-4d4e-b17b-1eed67715036
+ status: 200 OK
+ code: 200
+ duration: 67.880267ms
+ - id: 116
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:07 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - e40fcc48-17da-4eb9-9dc4-27c9283fb0d6
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 53.084651ms
+ - id: 117
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 22
+ host: api.scaleway.com
+ body: '{"action":"terminate"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 353
+ body: '{"task": {"id": "820dd57d-d94e-4a2b-898e-3a09dd04447b", "description": "server_terminate", "status": "pending", "href_from": "/servers/ed08153f-2c7f-4e90-941d-1c81611a4345/action", "href_result": "/servers/ed08153f-2c7f-4e90-941d-1c81611a4345", "started_at": "2025-12-11T17:15:07.557050+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}'
+ headers:
+ Content-Length:
+ - "353"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:07 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/820dd57d-d94e-4a2b-898e-3a09dd04447b
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - e3a6c141-29d7-4488-81be-1ca71473ba41
+ status: 202 Accepted
+ code: 202
+ duration: 248.072622ms
+ - id: 118
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1859
+ body: '{"server": {"id": "ed08153f-2c7f-4e90-941d-1c81611a4345", "name": "should-be-terminated", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "should-be-terminated", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a288842a-4664-4494-83ad-3b58812f82b7", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:db:90:b1", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T17:14:03.914771+00:00", "modification_date": "2025-12-11T17:15:07.376879+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "902", "node_id": "48"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1859"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 10a401b4-2a6d-4041-a2b1-603936eb42dd
+ status: 200 OK
+ code: 200
+ duration: 118.658148ms
+ - id: 119
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "ed08153f-2c7f-4e90-941d-1c81611a4345"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:12 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - fd516a13-e90e-46f3-853c-2a76b4dc2f5f
+ status: 404 Not Found
+ code: 404
+ duration: 65.65657ms
+ - id: 120
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed08153f-2c7f-4e90-941d-1c81611a4345
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "ed08153f-2c7f-4e90-941d-1c81611a4345"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 17:15:13 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 8925dc93-351b-44be-a80e-45888655767e
+ status: 404 Not Found
+ code: 404
+ duration: 50.023733ms
diff --git a/internal/services/instance/testdata/action-server-zone.cassette.yaml b/internal/services/instance/testdata/action-server-zone.cassette.yaml
new file mode 100644
index 000000000..a5b6955b9
--- /dev/null
+++ b/internal/services/instance/testdata/action-server-zone.cassette.yaml
@@ -0,0 +1,1786 @@
+---
+version: 2
+interactions:
+ - id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ page:
+ - "1"
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/products/servers?page=1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 26490
+ body: '{"servers": {"DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 30.66, "hourly_price": 0.042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.454, "hourly_price": 0.0198, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.424, "hourly_price": 0.0088, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 46.5734, "hourly_price": 0.06378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 554.07, "hourly_price": 0.759, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 274.48, "hourly_price": 0.376, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 136.51, "hourly_price": 0.187, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1197.93, "hourly_price": 1.641, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 66.43, "hourly_price": 0.091, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}}}'
+ headers:
+ Content-Length:
+ - "26490"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:31 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - f699c569-5a36-45db-b077-4e25a6433630
+ X-Total-Count:
+ - "34"
+ status: 200 OK
+ code: 200
+ duration: 168.930622ms
+ - id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ form:
+ image_label:
+ - ubuntu_jammy
+ order_by:
+ - type_asc
+ type:
+ - instance_sbs
+ zone:
+ - pl-waw-1
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_sbs&zone=pl-waw-1
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1195
+ body: '{"local_images":[{"id":"1827cd28-0fe4-4768-ac7d-d3a0e369de63","arch":"arm64","zone":"pl-waw-1","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G","BASIC2-A2C-4G","BASIC2-A2C-8G","BASIC2-A4C-8G","BASIC2-A4C-16G","BASIC2-A8C-16G","BASIC2-A8C-32G","BASIC2-A16C-32G","BASIC2-A16C-64G"],"label":"ubuntu_jammy","type":"instance_sbs"},{"id":"afe67daa-be54-4241-bb27-ebd9c7bf81f1","arch":"x86_64","zone":"pl-waw-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-48C-192G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-48C-384G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"label":"ubuntu_jammy","type":"instance_sbs"}],"total_count":2}'
+ headers:
+ Content-Length:
+ - "1195"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:31 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 04e3c4ab-ab72-4ff0-a918-f9698047274d
+ status: 200 OK
+ code: 200
+ duration: 49.147676ms
+ - id: 2
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 246
+ host: api.scaleway.com
+ body: '{"name":"test-terraform-action-server-zone","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"afe67daa-be54-4241-bb27-ebd9c7bf81f1","volumes":{"0":{"boot":false}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1766
+ body: '{"server": {"id": "333fc223-aa5e-4220-9164-bd5a242bed9b", "name": "test-terraform-action-server-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-zone", "image": {"id": "afe67daa-be54-4241-bb27-ebd9c7bf81f1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "8e4da57e-791e-42d9-81d3-17fa14a7261f", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:35.840286+00:00", "modification_date": "2025-09-12T09:11:35.840286+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "pl-waw-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7", "state": "available", "zone": "pl-waw-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:30:3b:07", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:32.191395+00:00", "modification_date": "2025-12-11T21:27:32.191395+00:00", "bootscript": null, "security_group": {"id": "c9b2a587-9904-4abf-9825-24a2d949a269", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "pl-waw-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1766"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:32 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 7619d20a-c238-4e6b-bb32-53135597e59b
+ status: 201 Created
+ code: 201
+ duration: 876.062769ms
+ - id: 3
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1766
+ body: '{"server": {"id": "333fc223-aa5e-4220-9164-bd5a242bed9b", "name": "test-terraform-action-server-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-zone", "image": {"id": "afe67daa-be54-4241-bb27-ebd9c7bf81f1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "8e4da57e-791e-42d9-81d3-17fa14a7261f", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:35.840286+00:00", "modification_date": "2025-09-12T09:11:35.840286+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "pl-waw-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7", "state": "available", "zone": "pl-waw-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:30:3b:07", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:32.191395+00:00", "modification_date": "2025-12-11T21:27:32.191395+00:00", "bootscript": null, "security_group": {"id": "c9b2a587-9904-4abf-9825-24a2d949a269", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "pl-waw-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1766"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:33 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 2a2991ff-9b37-49d7-b205-09c4ffadc385
+ status: 200 OK
+ code: 200
+ duration: 215.162548ms
+ - id: 4
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1766
+ body: '{"server": {"id": "333fc223-aa5e-4220-9164-bd5a242bed9b", "name": "test-terraform-action-server-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-zone", "image": {"id": "afe67daa-be54-4241-bb27-ebd9c7bf81f1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "8e4da57e-791e-42d9-81d3-17fa14a7261f", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:35.840286+00:00", "modification_date": "2025-09-12T09:11:35.840286+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "pl-waw-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7", "state": "available", "zone": "pl-waw-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:30:3b:07", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:32.191395+00:00", "modification_date": "2025-12-11T21:27:32.191395+00:00", "bootscript": null, "security_group": {"id": "c9b2a587-9904-4abf-9825-24a2d949a269", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "pl-waw-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1766"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:33 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 65b87cfc-24ad-4242-bb91-7cca00b33a1a
+ status: 200 OK
+ code: 200
+ duration: 156.550685ms
+ - id: 5
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/pl-waw-1/volumes/c213c1f3-1972-4e3e-b2ac-514aae2a81b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"c213c1f3-1972-4e3e-b2ac-514aae2a81b7","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T21:27:32.312127Z","updated_at":"2025-12-11T21:27:32.312127Z","references":[{"id":"04c89c11-5529-4352-8119-240fa6762fdc","product_resource_type":"instance_server","product_resource_id":"333fc223-aa5e-4220-9164-bd5a242bed9b","created_at":"2025-12-11T21:27:32.312127Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"8e4da57e-791e-42d9-81d3-17fa14a7261f","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"pl-waw-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:33 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 9e3ec578-14ba-4a97-bcd7-7b30b106a322
+ status: 200 OK
+ code: 200
+ duration: 108.040207ms
+ - id: 6
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 20
+ host: api.scaleway.com
+ body: '{"action":"poweron"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 357
+ body: '{"task": {"id": "f3c0fd9f-f74e-4816-8e38-5ee03632549f", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/333fc223-aa5e-4220-9164-bd5a242bed9b/action", "href_result": "/servers/333fc223-aa5e-4220-9164-bd5a242bed9b", "started_at": "2025-12-11T21:27:33.695536+00:00", "terminated_at": null, "progress": 0, "zone": "pl-waw-1"}}'
+ headers:
+ Content-Length:
+ - "357"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:33 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/pl-waw-1/tasks/f3c0fd9f-f74e-4816-8e38-5ee03632549f
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 1545171f-d514-40fc-b495-42ea4d885ad5
+ status: 202 Accepted
+ code: 202
+ duration: 422.202871ms
+ - id: 7
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1788
+ body: '{"server": {"id": "333fc223-aa5e-4220-9164-bd5a242bed9b", "name": "test-terraform-action-server-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-zone", "image": {"id": "afe67daa-be54-4241-bb27-ebd9c7bf81f1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "8e4da57e-791e-42d9-81d3-17fa14a7261f", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:35.840286+00:00", "modification_date": "2025-09-12T09:11:35.840286+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "pl-waw-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7", "state": "available", "zone": "pl-waw-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:30:3b:07", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:32.191395+00:00", "modification_date": "2025-12-11T21:27:33.382064+00:00", "bootscript": null, "security_group": {"id": "c9b2a587-9904-4abf-9825-24a2d949a269", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "pl-waw-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1788"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:33 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 593a78c5-6601-4a65-b27f-819e250df982
+ status: 200 OK
+ code: 200
+ duration: 169.571907ms
+ - id: 8
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1920
+ body: '{"server": {"id": "333fc223-aa5e-4220-9164-bd5a242bed9b", "name": "test-terraform-action-server-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-zone", "image": {"id": "afe67daa-be54-4241-bb27-ebd9c7bf81f1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "8e4da57e-791e-42d9-81d3-17fa14a7261f", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:35.840286+00:00", "modification_date": "2025-09-12T09:11:35.840286+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "pl-waw-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7", "state": "available", "zone": "pl-waw-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:30:3b:07", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:32.191395+00:00", "modification_date": "2025-12-11T21:27:35.713809+00:00", "bootscript": null, "security_group": {"id": "c9b2a587-9904-4abf-9825-24a2d949a269", "name": "Default security group"}, "location": {"zone_id": "pl-waw-1", "platform_id": "40", "cluster_id": "8", "hypervisor_id": "502", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "pl-waw-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1920"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:39 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 7daf7bcd-ce98-45cc-9dd3-09abaaee4914
+ status: 200 OK
+ code: 200
+ duration: 139.112532ms
+ - id: 9
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1920
+ body: '{"server": {"id": "333fc223-aa5e-4220-9164-bd5a242bed9b", "name": "test-terraform-action-server-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-zone", "image": {"id": "afe67daa-be54-4241-bb27-ebd9c7bf81f1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "8e4da57e-791e-42d9-81d3-17fa14a7261f", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:35.840286+00:00", "modification_date": "2025-09-12T09:11:35.840286+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "pl-waw-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7", "state": "available", "zone": "pl-waw-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:30:3b:07", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:32.191395+00:00", "modification_date": "2025-12-11T21:27:35.713809+00:00", "bootscript": null, "security_group": {"id": "c9b2a587-9904-4abf-9825-24a2d949a269", "name": "Default security group"}, "location": {"zone_id": "pl-waw-1", "platform_id": "40", "cluster_id": "8", "hypervisor_id": "502", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "pl-waw-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1920"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:39 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 61d3c8d6-5592-4c80-84f9-371ec9984fca
+ status: 200 OK
+ code: 200
+ duration: 152.172336ms
+ - id: 10
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/volumes/c213c1f3-1972-4e3e-b2ac-514aae2a81b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:39 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 76b908f9-367d-47c7-babe-01576515b412
+ status: 404 Not Found
+ code: 404
+ duration: 78.798631ms
+ - id: 11
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/pl-waw-1/volumes/c213c1f3-1972-4e3e-b2ac-514aae2a81b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"c213c1f3-1972-4e3e-b2ac-514aae2a81b7","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T21:27:32.312127Z","updated_at":"2025-12-11T21:27:32.312127Z","references":[{"id":"04c89c11-5529-4352-8119-240fa6762fdc","product_resource_type":"instance_server","product_resource_id":"333fc223-aa5e-4220-9164-bd5a242bed9b","created_at":"2025-12-11T21:27:32.312127Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"8e4da57e-791e-42d9-81d3-17fa14a7261f","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"pl-waw-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:39 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 391a5fec-0222-4163-88d2-bcd6b4787a48
+ status: 200 OK
+ code: 200
+ duration: 106.336495ms
+ - id: 12
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:39 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 08fce65b-550f-47a5-b63f-14a15149d3fe
+ status: 200 OK
+ code: 200
+ duration: 98.861446ms
+ - id: 13
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:39 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 64996043-a462-483d-9bae-09a7e3f009f3
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 103.767706ms
+ - id: 14
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 26
+ host: api.scaleway.com
+ body: '{"action":"stop_in_place"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 357
+ body: '{"task": {"id": "be1f24aa-2777-4fe4-993e-fbd8652d761a", "description": "server_stop_in_place", "status": "pending", "href_from": "/servers/333fc223-aa5e-4220-9164-bd5a242bed9b/action", "href_result": "/servers/333fc223-aa5e-4220-9164-bd5a242bed9b", "started_at": "2025-12-11T21:27:39.912917+00:00", "terminated_at": null, "progress": 0, "zone": "pl-waw-1"}}'
+ headers:
+ Content-Length:
+ - "357"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:39 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/pl-waw-1/tasks/be1f24aa-2777-4fe4-993e-fbd8652d761a
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 1feaec5d-b6c4-4507-8cb9-eff4c45f4aa2
+ status: 202 Accepted
+ code: 202
+ duration: 345.28286ms
+ - id: 15
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1889
+ body: '{"server": {"id": "333fc223-aa5e-4220-9164-bd5a242bed9b", "name": "test-terraform-action-server-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-zone", "image": {"id": "afe67daa-be54-4241-bb27-ebd9c7bf81f1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "8e4da57e-791e-42d9-81d3-17fa14a7261f", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:35.840286+00:00", "modification_date": "2025-09-12T09:11:35.840286+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "pl-waw-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7", "state": "available", "zone": "pl-waw-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:30:3b:07", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:32.191395+00:00", "modification_date": "2025-12-11T21:27:39.677002+00:00", "bootscript": null, "security_group": {"id": "c9b2a587-9904-4abf-9825-24a2d949a269", "name": "Default security group"}, "location": {"zone_id": "pl-waw-1", "platform_id": "40", "cluster_id": "8", "hypervisor_id": "502", "node_id": "9"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "pl-waw-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1889"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:40 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - ce1be595-1522-499b-be17-9cc4f3355ff4
+ status: 200 OK
+ code: 200
+ duration: 141.172393ms
+ - id: 16
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1889
+ body: '{"server": {"id": "333fc223-aa5e-4220-9164-bd5a242bed9b", "name": "test-terraform-action-server-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-zone", "image": {"id": "afe67daa-be54-4241-bb27-ebd9c7bf81f1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "8e4da57e-791e-42d9-81d3-17fa14a7261f", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:35.840286+00:00", "modification_date": "2025-09-12T09:11:35.840286+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "pl-waw-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7", "state": "available", "zone": "pl-waw-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:30:3b:07", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:32.191395+00:00", "modification_date": "2025-12-11T21:27:39.677002+00:00", "bootscript": null, "security_group": {"id": "c9b2a587-9904-4abf-9825-24a2d949a269", "name": "Default security group"}, "location": {"zone_id": "pl-waw-1", "platform_id": "40", "cluster_id": "8", "hypervisor_id": "502", "node_id": "9"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "pl-waw-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1889"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:45 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - d746e8ac-80f4-400e-b66c-6fd20b37b04c
+ status: 200 OK
+ code: 200
+ duration: 165.813271ms
+ - id: 17
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1889
+ body: '{"server": {"id": "333fc223-aa5e-4220-9164-bd5a242bed9b", "name": "test-terraform-action-server-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-zone", "image": {"id": "afe67daa-be54-4241-bb27-ebd9c7bf81f1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "8e4da57e-791e-42d9-81d3-17fa14a7261f", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:35.840286+00:00", "modification_date": "2025-09-12T09:11:35.840286+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "pl-waw-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7", "state": "available", "zone": "pl-waw-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:30:3b:07", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:32.191395+00:00", "modification_date": "2025-12-11T21:27:39.677002+00:00", "bootscript": null, "security_group": {"id": "c9b2a587-9904-4abf-9825-24a2d949a269", "name": "Default security group"}, "location": {"zone_id": "pl-waw-1", "platform_id": "40", "cluster_id": "8", "hypervisor_id": "502", "node_id": "9"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "pl-waw-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1889"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - ebad8d5b-ac4c-46d3-8840-d7b4bf2b6e09
+ status: 200 OK
+ code: 200
+ duration: 142.933031ms
+ - id: 18
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1889
+ body: '{"server": {"id": "333fc223-aa5e-4220-9164-bd5a242bed9b", "name": "test-terraform-action-server-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-zone", "image": {"id": "afe67daa-be54-4241-bb27-ebd9c7bf81f1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "8e4da57e-791e-42d9-81d3-17fa14a7261f", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:35.840286+00:00", "modification_date": "2025-09-12T09:11:35.840286+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "pl-waw-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7", "state": "available", "zone": "pl-waw-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:30:3b:07", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:32.191395+00:00", "modification_date": "2025-12-11T21:27:39.677002+00:00", "bootscript": null, "security_group": {"id": "c9b2a587-9904-4abf-9825-24a2d949a269", "name": "Default security group"}, "location": {"zone_id": "pl-waw-1", "platform_id": "40", "cluster_id": "8", "hypervisor_id": "502", "node_id": "9"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "pl-waw-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1889"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:27:55 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - e41c1338-d265-4e0e-a9ae-c4f3edaec4e7
+ status: 200 OK
+ code: 200
+ duration: 173.961634ms
+ - id: 19
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1889
+ body: '{"server": {"id": "333fc223-aa5e-4220-9164-bd5a242bed9b", "name": "test-terraform-action-server-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-zone", "image": {"id": "afe67daa-be54-4241-bb27-ebd9c7bf81f1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "8e4da57e-791e-42d9-81d3-17fa14a7261f", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:35.840286+00:00", "modification_date": "2025-09-12T09:11:35.840286+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "pl-waw-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7", "state": "available", "zone": "pl-waw-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:30:3b:07", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:32.191395+00:00", "modification_date": "2025-12-11T21:27:39.677002+00:00", "bootscript": null, "security_group": {"id": "c9b2a587-9904-4abf-9825-24a2d949a269", "name": "Default security group"}, "location": {"zone_id": "pl-waw-1", "platform_id": "40", "cluster_id": "8", "hypervisor_id": "502", "node_id": "9"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "pl-waw-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1889"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:00 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - e509499b-e0f5-4ded-9db6-6f3dc7b99e0e
+ status: 200 OK
+ code: 200
+ duration: 129.922038ms
+ - id: 20
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1889
+ body: '{"server": {"id": "333fc223-aa5e-4220-9164-bd5a242bed9b", "name": "test-terraform-action-server-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-zone", "image": {"id": "afe67daa-be54-4241-bb27-ebd9c7bf81f1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "8e4da57e-791e-42d9-81d3-17fa14a7261f", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:35.840286+00:00", "modification_date": "2025-09-12T09:11:35.840286+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "pl-waw-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7", "state": "available", "zone": "pl-waw-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:30:3b:07", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:32.191395+00:00", "modification_date": "2025-12-11T21:27:39.677002+00:00", "bootscript": null, "security_group": {"id": "c9b2a587-9904-4abf-9825-24a2d949a269", "name": "Default security group"}, "location": {"zone_id": "pl-waw-1", "platform_id": "40", "cluster_id": "8", "hypervisor_id": "502", "node_id": "9"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "pl-waw-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1889"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - f5e09477-3ade-4a1d-8a57-44b4873b15cb
+ status: 200 OK
+ code: 200
+ duration: 128.022407ms
+ - id: 21
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1889
+ body: '{"server": {"id": "333fc223-aa5e-4220-9164-bd5a242bed9b", "name": "test-terraform-action-server-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-zone", "image": {"id": "afe67daa-be54-4241-bb27-ebd9c7bf81f1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "8e4da57e-791e-42d9-81d3-17fa14a7261f", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:35.840286+00:00", "modification_date": "2025-09-12T09:11:35.840286+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "pl-waw-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7", "state": "available", "zone": "pl-waw-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "stopping in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:30:3b:07", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:32.191395+00:00", "modification_date": "2025-12-11T21:27:39.677002+00:00", "bootscript": null, "security_group": {"id": "c9b2a587-9904-4abf-9825-24a2d949a269", "name": "Default security group"}, "location": {"zone_id": "pl-waw-1", "platform_id": "40", "cluster_id": "8", "hypervisor_id": "502", "node_id": "9"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "pl-waw-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1889"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:11 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 0ef1903c-483b-4229-93e1-ebf5a6abdff6
+ status: 200 OK
+ code: 200
+ duration: 203.758691ms
+ - id: 22
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1925
+ body: '{"server": {"id": "333fc223-aa5e-4220-9164-bd5a242bed9b", "name": "test-terraform-action-server-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-zone", "image": {"id": "afe67daa-be54-4241-bb27-ebd9c7bf81f1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "8e4da57e-791e-42d9-81d3-17fa14a7261f", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:35.840286+00:00", "modification_date": "2025-09-12T09:11:35.840286+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "pl-waw-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7", "state": "available", "zone": "pl-waw-1"}}, "tags": [], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:30:3b:07", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:32.191395+00:00", "modification_date": "2025-12-11T21:28:12.640286+00:00", "bootscript": null, "security_group": {"id": "c9b2a587-9904-4abf-9825-24a2d949a269", "name": "Default security group"}, "location": {"zone_id": "pl-waw-1", "platform_id": "40", "cluster_id": "8", "hypervisor_id": "502", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "pl-waw-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1925"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:16 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - eedd0ce3-d017-46fe-9be7-48e9784fed53
+ status: 200 OK
+ code: 200
+ duration: 155.074246ms
+ - id: 23
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1925
+ body: '{"server": {"id": "333fc223-aa5e-4220-9164-bd5a242bed9b", "name": "test-terraform-action-server-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-zone", "image": {"id": "afe67daa-be54-4241-bb27-ebd9c7bf81f1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "8e4da57e-791e-42d9-81d3-17fa14a7261f", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:35.840286+00:00", "modification_date": "2025-09-12T09:11:35.840286+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "pl-waw-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7", "state": "available", "zone": "pl-waw-1"}}, "tags": [], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:30:3b:07", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:32.191395+00:00", "modification_date": "2025-12-11T21:28:12.640286+00:00", "bootscript": null, "security_group": {"id": "c9b2a587-9904-4abf-9825-24a2d949a269", "name": "Default security group"}, "location": {"zone_id": "pl-waw-1", "platform_id": "40", "cluster_id": "8", "hypervisor_id": "502", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "pl-waw-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1925"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:16 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 1cfc6f30-debb-464a-a50d-d14031c39072
+ status: 200 OK
+ code: 200
+ duration: 154.00653ms
+ - id: 24
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/volumes/c213c1f3-1972-4e3e-b2ac-514aae2a81b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:16 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 08ecaef2-d8c7-4d70-8888-8eab760e765a
+ status: 404 Not Found
+ code: 404
+ duration: 71.945841ms
+ - id: 25
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/pl-waw-1/volumes/c213c1f3-1972-4e3e-b2ac-514aae2a81b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"c213c1f3-1972-4e3e-b2ac-514aae2a81b7","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T21:27:32.312127Z","updated_at":"2025-12-11T21:27:32.312127Z","references":[{"id":"04c89c11-5529-4352-8119-240fa6762fdc","product_resource_type":"instance_server","product_resource_id":"333fc223-aa5e-4220-9164-bd5a242bed9b","created_at":"2025-12-11T21:27:32.312127Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"8e4da57e-791e-42d9-81d3-17fa14a7261f","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"pl-waw-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:16 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - f3a7d6d1-c337-4f9a-87c1-398b97233638
+ status: 200 OK
+ code: 200
+ duration: 95.397935ms
+ - id: 26
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:16 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 1d407c83-2b16-4cd5-81c3-c6cde0890389
+ status: 200 OK
+ code: 200
+ duration: 93.090658ms
+ - id: 27
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:16 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 14a5ddab-c925-432f-b59c-233273ce20ec
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 98.856785ms
+ - id: 28
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1925
+ body: '{"server": {"id": "333fc223-aa5e-4220-9164-bd5a242bed9b", "name": "test-terraform-action-server-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-zone", "image": {"id": "afe67daa-be54-4241-bb27-ebd9c7bf81f1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "8e4da57e-791e-42d9-81d3-17fa14a7261f", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:35.840286+00:00", "modification_date": "2025-09-12T09:11:35.840286+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "pl-waw-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7", "state": "available", "zone": "pl-waw-1"}}, "tags": [], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:30:3b:07", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:32.191395+00:00", "modification_date": "2025-12-11T21:28:12.640286+00:00", "bootscript": null, "security_group": {"id": "c9b2a587-9904-4abf-9825-24a2d949a269", "name": "Default security group"}, "location": {"zone_id": "pl-waw-1", "platform_id": "40", "cluster_id": "8", "hypervisor_id": "502", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "pl-waw-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1925"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:17 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 02c5167c-76e0-4c65-a9ea-c20f79f3746a
+ status: 200 OK
+ code: 200
+ duration: 167.854044ms
+ - id: 29
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/volumes/c213c1f3-1972-4e3e-b2ac-514aae2a81b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:17 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - ebc5b367-7219-425f-ba30-f12cf2e75ed9
+ status: 404 Not Found
+ code: 404
+ duration: 72.23847ms
+ - id: 30
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/pl-waw-1/volumes/c213c1f3-1972-4e3e-b2ac-514aae2a81b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"c213c1f3-1972-4e3e-b2ac-514aae2a81b7","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T21:27:32.312127Z","updated_at":"2025-12-11T21:27:32.312127Z","references":[{"id":"04c89c11-5529-4352-8119-240fa6762fdc","product_resource_type":"instance_server","product_resource_id":"333fc223-aa5e-4220-9164-bd5a242bed9b","created_at":"2025-12-11T21:27:32.312127Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"8e4da57e-791e-42d9-81d3-17fa14a7261f","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"pl-waw-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:17 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - cd07cc53-2108-403a-b502-879306a7d472
+ status: 200 OK
+ code: 200
+ duration: 100.485938ms
+ - id: 31
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:17 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 0635d39a-b687-49f2-af50-ed54b78862ee
+ status: 200 OK
+ code: 200
+ duration: 98.700079ms
+ - id: 32
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:17 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - aa07c240-17be-406b-9112-56a337461fc1
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 101.497758ms
+ - id: 33
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1925
+ body: '{"server": {"id": "333fc223-aa5e-4220-9164-bd5a242bed9b", "name": "test-terraform-action-server-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-zone", "image": {"id": "afe67daa-be54-4241-bb27-ebd9c7bf81f1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "8e4da57e-791e-42d9-81d3-17fa14a7261f", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:35.840286+00:00", "modification_date": "2025-09-12T09:11:35.840286+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "pl-waw-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7", "state": "available", "zone": "pl-waw-1"}}, "tags": [], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:30:3b:07", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:32.191395+00:00", "modification_date": "2025-12-11T21:28:12.640286+00:00", "bootscript": null, "security_group": {"id": "c9b2a587-9904-4abf-9825-24a2d949a269", "name": "Default security group"}, "location": {"zone_id": "pl-waw-1", "platform_id": "40", "cluster_id": "8", "hypervisor_id": "502", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "pl-waw-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1925"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:17 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - aeccb6e9-3abb-4bc8-b65b-d64e88c8d591
+ status: 200 OK
+ code: 200
+ duration: 153.575049ms
+ - id: 34
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1925
+ body: '{"server": {"id": "333fc223-aa5e-4220-9164-bd5a242bed9b", "name": "test-terraform-action-server-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-zone", "image": {"id": "afe67daa-be54-4241-bb27-ebd9c7bf81f1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "8e4da57e-791e-42d9-81d3-17fa14a7261f", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:35.840286+00:00", "modification_date": "2025-09-12T09:11:35.840286+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "pl-waw-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7", "state": "available", "zone": "pl-waw-1"}}, "tags": [], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:30:3b:07", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:32.191395+00:00", "modification_date": "2025-12-11T21:28:12.640286+00:00", "bootscript": null, "security_group": {"id": "c9b2a587-9904-4abf-9825-24a2d949a269", "name": "Default security group"}, "location": {"zone_id": "pl-waw-1", "platform_id": "40", "cluster_id": "8", "hypervisor_id": "502", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "pl-waw-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1925"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:18 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - da2ba5d0-d5c5-4bb4-b888-a25e61481e76
+ status: 200 OK
+ code: 200
+ duration: 146.888241ms
+ - id: 35
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/volumes/c213c1f3-1972-4e3e-b2ac-514aae2a81b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:18 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - dc173f60-7bb9-4c30-b220-0d26147b8896
+ status: 404 Not Found
+ code: 404
+ duration: 70.590233ms
+ - id: 36
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/pl-waw-1/volumes/c213c1f3-1972-4e3e-b2ac-514aae2a81b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"c213c1f3-1972-4e3e-b2ac-514aae2a81b7","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T21:27:32.312127Z","updated_at":"2025-12-11T21:27:32.312127Z","references":[{"id":"04c89c11-5529-4352-8119-240fa6762fdc","product_resource_type":"instance_server","product_resource_id":"333fc223-aa5e-4220-9164-bd5a242bed9b","created_at":"2025-12-11T21:27:32.312127Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"8e4da57e-791e-42d9-81d3-17fa14a7261f","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"pl-waw-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:18 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 2f57f59f-5abe-411d-bc79-25c136a8f992
+ status: 200 OK
+ code: 200
+ duration: 82.140699ms
+ - id: 37
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b/user_data
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 17
+ body: '{"user_data": []}'
+ headers:
+ Content-Length:
+ - "17"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:18 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 017de102-d156-48bb-93bb-31eccf3e1176
+ status: 200 OK
+ code: 200
+ duration: 85.399774ms
+ - id: 38
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b/private_nics
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 20
+ body: '{"private_nics": []}'
+ headers:
+ Content-Length:
+ - "20"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:18 GMT
+ Link:
+ - ; rel="last"
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - bcf828c4-db24-4161-af4d-ee456da48753
+ X-Total-Count:
+ - "0"
+ status: 200 OK
+ code: 200
+ duration: 98.405878ms
+ - id: 39
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1925
+ body: '{"server": {"id": "333fc223-aa5e-4220-9164-bd5a242bed9b", "name": "test-terraform-action-server-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-zone", "image": {"id": "afe67daa-be54-4241-bb27-ebd9c7bf81f1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "8e4da57e-791e-42d9-81d3-17fa14a7261f", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:35.840286+00:00", "modification_date": "2025-09-12T09:11:35.840286+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "pl-waw-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7", "state": "available", "zone": "pl-waw-1"}}, "tags": [], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:30:3b:07", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:32.191395+00:00", "modification_date": "2025-12-11T21:28:12.640286+00:00", "bootscript": null, "security_group": {"id": "c9b2a587-9904-4abf-9825-24a2d949a269", "name": "Default security group"}, "location": {"zone_id": "pl-waw-1", "platform_id": "40", "cluster_id": "8", "hypervisor_id": "502", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "pl-waw-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1925"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:18 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 96e4bbb1-5f28-45c2-a57b-cc77f9479b19
+ status: 200 OK
+ code: 200
+ duration: 151.373582ms
+ - id: 40
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1925
+ body: '{"server": {"id": "333fc223-aa5e-4220-9164-bd5a242bed9b", "name": "test-terraform-action-server-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-zone", "image": {"id": "afe67daa-be54-4241-bb27-ebd9c7bf81f1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "8e4da57e-791e-42d9-81d3-17fa14a7261f", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:35.840286+00:00", "modification_date": "2025-09-12T09:11:35.840286+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "pl-waw-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7", "state": "available", "zone": "pl-waw-1"}}, "tags": [], "state": "stopped in place", "protected": false, "state_detail": "stopped in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:30:3b:07", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:32.191395+00:00", "modification_date": "2025-12-11T21:28:12.640286+00:00", "bootscript": null, "security_group": {"id": "c9b2a587-9904-4abf-9825-24a2d949a269", "name": "Default security group"}, "location": {"zone_id": "pl-waw-1", "platform_id": "40", "cluster_id": "8", "hypervisor_id": "502", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweron", "poweroff", "terminate", "reboot", "backup"], "placement_group": null, "private_nics": [], "zone": "pl-waw-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1925"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:18 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 5f46ddc2-237e-422c-bb04-98ce57e07374
+ status: 200 OK
+ code: 200
+ duration: 146.127682ms
+ - id: 41
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/pl-waw-1/volumes/c213c1f3-1972-4e3e-b2ac-514aae2a81b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 686
+ body: '{"id":"c213c1f3-1972-4e3e-b2ac-514aae2a81b7","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T21:27:32.312127Z","updated_at":"2025-12-11T21:27:32.312127Z","references":[{"id":"04c89c11-5529-4352-8119-240fa6762fdc","product_resource_type":"instance_server","product_resource_id":"333fc223-aa5e-4220-9164-bd5a242bed9b","created_at":"2025-12-11T21:27:32.312127Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"8e4da57e-791e-42d9-81d3-17fa14a7261f","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"pl-waw-1"}'
+ headers:
+ Content-Length:
+ - "686"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:18 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - f1b84ae5-b21b-4eaa-85d3-9e975da0889c
+ status: 200 OK
+ code: 200
+ duration: 82.849071ms
+ - id: 42
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 20
+ host: api.scaleway.com
+ body: '{"action":"poweron"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 360
+ body: '{"task": {"id": "591ab230-70c9-47aa-8822-b15f9b4105aa", "description": "server_poweron_in_place", "status": "pending", "href_from": "/servers/333fc223-aa5e-4220-9164-bd5a242bed9b/action", "href_result": "/servers/333fc223-aa5e-4220-9164-bd5a242bed9b", "started_at": "2025-12-11T21:28:19.476953+00:00", "terminated_at": null, "progress": 0, "zone": "pl-waw-1"}}'
+ headers:
+ Content-Length:
+ - "360"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:19 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/pl-waw-1/tasks/591ab230-70c9-47aa-8822-b15f9b4105aa
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 71eaf147-31a2-4341-8632-98f88b6c409c
+ status: 202 Accepted
+ code: 202
+ duration: 548.42967ms
+ - id: 43
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1889
+ body: '{"server": {"id": "333fc223-aa5e-4220-9164-bd5a242bed9b", "name": "test-terraform-action-server-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-zone", "image": {"id": "afe67daa-be54-4241-bb27-ebd9c7bf81f1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "8e4da57e-791e-42d9-81d3-17fa14a7261f", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:35.840286+00:00", "modification_date": "2025-09-12T09:11:35.840286+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "pl-waw-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7", "state": "available", "zone": "pl-waw-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "starting in place", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:30:3b:07", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:32.191395+00:00", "modification_date": "2025-12-11T21:28:12.640286+00:00", "bootscript": null, "security_group": {"id": "c9b2a587-9904-4abf-9825-24a2d949a269", "name": "Default security group"}, "location": {"zone_id": "pl-waw-1", "platform_id": "40", "cluster_id": "8", "hypervisor_id": "502", "node_id": "9"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "pl-waw-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1889"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:19 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - fb6e9a9a-c211-4d69-8cb6-aafda2a25075
+ status: 200 OK
+ code: 200
+ duration: 131.261304ms
+ - id: 44
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1920
+ body: '{"server": {"id": "333fc223-aa5e-4220-9164-bd5a242bed9b", "name": "test-terraform-action-server-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-zone", "image": {"id": "afe67daa-be54-4241-bb27-ebd9c7bf81f1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "8e4da57e-791e-42d9-81d3-17fa14a7261f", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:35.840286+00:00", "modification_date": "2025-09-12T09:11:35.840286+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "pl-waw-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7", "state": "available", "zone": "pl-waw-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:30:3b:07", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:32.191395+00:00", "modification_date": "2025-12-11T21:28:21.105461+00:00", "bootscript": null, "security_group": {"id": "c9b2a587-9904-4abf-9825-24a2d949a269", "name": "Default security group"}, "location": {"zone_id": "pl-waw-1", "platform_id": "40", "cluster_id": "8", "hypervisor_id": "502", "node_id": "9"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "pl-waw-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1920"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:24 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 33a7bd8a-c1e0-4ff3-bcd8-9fdca01c14cc
+ status: 200 OK
+ code: 200
+ duration: 145.108747ms
+ - id: 45
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 22
+ host: api.scaleway.com
+ body: '{"action":"terminate"}'
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b/action
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 353
+ body: '{"task": {"id": "16419a1e-a90c-4710-8a31-e7ea72fc6617", "description": "server_terminate", "status": "pending", "href_from": "/servers/333fc223-aa5e-4220-9164-bd5a242bed9b/action", "href_result": "/servers/333fc223-aa5e-4220-9164-bd5a242bed9b", "started_at": "2025-12-11T21:28:25.098694+00:00", "terminated_at": null, "progress": 0, "zone": "pl-waw-1"}}'
+ headers:
+ Content-Length:
+ - "353"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:25 GMT
+ Location:
+ - https://api.scaleway.com/instance/v1/zones/pl-waw-1/tasks/16419a1e-a90c-4710-8a31-e7ea72fc6617
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 14d27979-59b8-4097-b83b-ea49ff46a766
+ status: 202 Accepted
+ code: 202
+ duration: 323.571307ms
+ - id: 46
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1883
+ body: '{"server": {"id": "333fc223-aa5e-4220-9164-bd5a242bed9b", "name": "test-terraform-action-server-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-zone", "image": {"id": "afe67daa-be54-4241-bb27-ebd9c7bf81f1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "8e4da57e-791e-42d9-81d3-17fa14a7261f", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:35.840286+00:00", "modification_date": "2025-09-12T09:11:35.840286+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "pl-waw-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7", "state": "available", "zone": "pl-waw-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:30:3b:07", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:32.191395+00:00", "modification_date": "2025-12-11T21:28:24.882412+00:00", "bootscript": null, "security_group": {"id": "c9b2a587-9904-4abf-9825-24a2d949a269", "name": "Default security group"}, "location": {"zone_id": "pl-waw-1", "platform_id": "40", "cluster_id": "8", "hypervisor_id": "502", "node_id": "9"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "pl-waw-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1883"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:25 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 0e9af9f5-7e06-456e-85dd-2a03ceb6256f
+ status: 200 OK
+ code: 200
+ duration: 141.986489ms
+ - id: 47
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1883
+ body: '{"server": {"id": "333fc223-aa5e-4220-9164-bd5a242bed9b", "name": "test-terraform-action-server-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-zone", "image": {"id": "afe67daa-be54-4241-bb27-ebd9c7bf81f1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "8e4da57e-791e-42d9-81d3-17fa14a7261f", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:35.840286+00:00", "modification_date": "2025-09-12T09:11:35.840286+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "pl-waw-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7", "state": "available", "zone": "pl-waw-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:30:3b:07", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:32.191395+00:00", "modification_date": "2025-12-11T21:28:24.882412+00:00", "bootscript": null, "security_group": {"id": "c9b2a587-9904-4abf-9825-24a2d949a269", "name": "Default security group"}, "location": {"zone_id": "pl-waw-1", "platform_id": "40", "cluster_id": "8", "hypervisor_id": "502", "node_id": "9"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "pl-waw-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1883"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:30 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - ae327172-811d-4a1e-8b79-04fc6c585cad
+ status: 200 OK
+ code: 200
+ duration: 135.77771ms
+ - id: 48
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1883
+ body: '{"server": {"id": "333fc223-aa5e-4220-9164-bd5a242bed9b", "name": "test-terraform-action-server-zone", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "test-terraform-action-server-zone", "image": {"id": "afe67daa-be54-4241-bb27-ebd9c7bf81f1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "8e4da57e-791e-42d9-81d3-17fa14a7261f", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:35.840286+00:00", "modification_date": "2025-09-12T09:11:35.840286+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "pl-waw-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7", "state": "available", "zone": "pl-waw-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:30:3b:07", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-12-11T21:27:32.191395+00:00", "modification_date": "2025-12-11T21:28:24.882412+00:00", "bootscript": null, "security_group": {"id": "c9b2a587-9904-4abf-9825-24a2d949a269", "name": "Default security group"}, "location": {"zone_id": "pl-waw-1", "platform_id": "40", "cluster_id": "8", "hypervisor_id": "502", "node_id": "9"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "pl-waw-1", "filesystems": [], "end_of_service": false}}'
+ headers:
+ Content-Length:
+ - "1883"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:35 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - d791863c-a889-47e9-b164-f1c4e733d424
+ status: 200 OK
+ code: 200
+ duration: 170.950751ms
+ - id: 49
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "333fc223-aa5e-4220-9164-bd5a242bed9b"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:40 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 54d71ba5-7115-49ba-9a85-66c7606783fb
+ status: 404 Not Found
+ code: 404
+ duration: 103.271319ms
+ - id: 50
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/volumes/c213c1f3-1972-4e3e-b2ac-514aae2a81b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "c213c1f3-1972-4e3e-b2ac-514aae2a81b7"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:40 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 3747c6c0-a366-49f8-9568-2bb4f7b1d443
+ status: 404 Not Found
+ code: 404
+ duration: 80.93929ms
+ - id: 51
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/pl-waw-1/volumes/c213c1f3-1972-4e3e-b2ac-514aae2a81b7
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 484
+ body: '{"id":"c213c1f3-1972-4e3e-b2ac-514aae2a81b7","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","created_at":"2025-12-11T21:27:32.312127Z","updated_at":"2025-12-11T21:28:36.220093Z","references":[],"parent_snapshot_id":"8e4da57e-791e-42d9-81d3-17fa14a7261f","status":"available","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":"2025-12-11T21:28:36.220093Z","zone":"pl-waw-1"}'
+ headers:
+ Content-Length:
+ - "484"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:40 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 5c5da5b1-3ed9-4afd-858a-d7b6c6825e25
+ status: 200 OK
+ code: 200
+ duration: 97.608047ms
+ - id: 52
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/block/v1alpha1/zones/pl-waw-1/volumes/c213c1f3-1972-4e3e-b2ac-514aae2a81b7
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 0
+ body: ""
+ headers:
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:41 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - e954e569-c71d-4027-80a8-2dc56772d749
+ status: 204 No Content
+ code: 204
+ duration: 141.924581ms
+ - id: 53
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ host: api.scaleway.com
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/servers/333fc223-aa5e-4220-9164-bd5a242bed9b
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 143
+ body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "333fc223-aa5e-4220-9164-bd5a242bed9b"}'
+ headers:
+ Content-Length:
+ - "143"
+ Content-Type:
+ - application/json
+ Date:
+ - Thu, 11 Dec 2025 21:28:41 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge03)
+ X-Request-Id:
+ - 5828fbba-dc9a-4fd8-b2ab-c14778c067e4
+ status: 404 Not Found
+ code: 404
+ duration: 113.856542ms
diff --git a/internal/services/instance/testfuncs/checks.go b/internal/services/instance/testfuncs/checks.go
index 81a6f7152..b168a8511 100644
--- a/internal/services/instance/testfuncs/checks.go
+++ b/internal/services/instance/testfuncs/checks.go
@@ -45,6 +45,27 @@ func CheckIPExists(tt *acctest.TestTools, name string) resource.TestCheckFunc {
}
}
+func IsServerPresent(tt *acctest.TestTools, n string) resource.TestCheckFunc {
+ return func(s *terraform.State) error {
+ rs, ok := s.RootModule().Resources[n]
+ if !ok {
+ return fmt.Errorf("resource not found: %s", n)
+ }
+
+ instanceAPI, zone, ID, err := instance.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID)
+ if err != nil {
+ return err
+ }
+
+ _, err = instanceAPI.GetServer(&instanceSDK.GetServerRequest{ServerID: ID, Zone: zone})
+ if err != nil {
+ return err
+ }
+
+ return nil
+ }
+}
+
func IsServerDestroyed(tt *acctest.TestTools) resource.TestCheckFunc {
return func(state *terraform.State) error {
ctx := context.Background()
@@ -248,3 +269,59 @@ func IsVolumeDestroyed(tt *acctest.TestTools) resource.TestCheckFunc {
})
}
}
+
+func IsSnapshotPresent(tt *acctest.TestTools, n string) resource.TestCheckFunc {
+ return func(s *terraform.State) error {
+ rs, ok := s.RootModule().Resources[n]
+ if !ok {
+ return fmt.Errorf("resource not found: %s", n)
+ }
+
+ instanceAPI, zone, ID, err := instance.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID)
+ if err != nil {
+ return err
+ }
+
+ _, err = instanceAPI.GetSnapshot(&instanceSDK.GetSnapshotRequest{
+ Zone: zone,
+ SnapshotID: ID,
+ })
+ if err != nil {
+ return err
+ }
+
+ return nil
+ }
+}
+
+func IsSnapshotDestroyed(tt *acctest.TestTools) resource.TestCheckFunc {
+ return func(state *terraform.State) error {
+ for _, rs := range state.RootModule().Resources {
+ if rs.Type != "scaleway_instance_snapshot" {
+ continue
+ }
+
+ instanceAPI, zone, ID, err := instance.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID)
+ if err != nil {
+ return err
+ }
+
+ _, err = instanceAPI.GetSnapshot(&instanceSDK.GetSnapshotRequest{
+ SnapshotID: ID,
+ Zone: zone,
+ })
+
+ // If no error resource still exist
+ if err == nil {
+ return fmt.Errorf("snapshot (%s) still exists", rs.Primary.ID)
+ }
+
+ // Unexpected api error we return it
+ if !httperrors.Is404(err) {
+ return err
+ }
+ }
+
+ return nil
+ }
+}
diff --git a/provider/framework.go b/provider/framework.go
index e14461074..cffc88857 100644
--- a/provider/framework.go
+++ b/provider/framework.go
@@ -125,7 +125,7 @@ func (p *ScalewayProvider) Configure(ctx context.Context, req provider.Configure
resp.ActionData = m
}
-func (p *ScalewayProvider) Resources(ctx context.Context) []func() resource.Resource {
+func (p *ScalewayProvider) Resources(_ context.Context) []func() resource.Resource {
return []func() resource.Resource{}
}
@@ -140,8 +140,10 @@ func (p *ScalewayProvider) DataSources(_ context.Context) []func() datasource.Da
func (p *ScalewayProvider) Actions(_ context.Context) []func() action.Action {
var res []func() action.Action
- res = append(res, instance.NewServerAction)
res = append(res, cockpit.NewTriggerTestAlertAction)
+ res = append(res, instance.NewCreateSnapshot)
+ res = append(res, instance.NewExportSnapshot)
+ res = append(res, instance.NewServerAction)
res = append(res, jobs.NewStartJobDefinitionAction)
res = append(res, keymanager.NewRotateKeyAction)