From 485e443a9ca13abe41decadb340d351c816a5a77 Mon Sep 17 00:00:00 2001 From: Yacine FODIL Date: Fri, 27 Oct 2023 09:31:35 +0200 Subject: [PATCH 1/5] feat(ipam): add ipam ip resource --- .github/workflows/nightly.yml | 1 + docs/resources/ipam_ip.md | 113 +++ scaleway/helpers.go | 24 + scaleway/helpers_instance.go | 10 +- scaleway/helpers_ipam.go | 88 ++ scaleway/helpers_vpc.go | 4 +- scaleway/provider.go | 1 + scaleway/resource_ipam_ip.go | 271 +++++ scaleway/resource_ipam_ip_test.go | 281 ++++++ scaleway/resource_vpc_private_network_test.go | 5 +- scaleway/testdata/ipamip-basic.cassette.yaml | 536 ++++++++++ .../ipamip-with-cidr-address.cassette.yaml | 536 ++++++++++ ...amip-with-standalone-address.cassette.yaml | 536 ++++++++++ .../testdata/ipamip-with-tags.cassette.yaml | 936 ++++++++++++++++++ 14 files changed, 3335 insertions(+), 7 deletions(-) create mode 100644 docs/resources/ipam_ip.md create mode 100644 scaleway/resource_ipam_ip.go create mode 100644 scaleway/resource_ipam_ip_test.go create mode 100644 scaleway/testdata/ipamip-basic.cassette.yaml create mode 100644 scaleway/testdata/ipamip-with-cidr-address.cassette.yaml create mode 100644 scaleway/testdata/ipamip-with-standalone-address.cassette.yaml create mode 100644 scaleway/testdata/ipamip-with-tags.cassette.yaml diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index b6e6376b8c..584035f61d 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -23,6 +23,7 @@ jobs: - Iam - Instance - Iot + - IPAM - K8S - Lb - Marketplace diff --git a/docs/resources/ipam_ip.md b/docs/resources/ipam_ip.md new file mode 100644 index 0000000000..b3fee11d24 --- /dev/null +++ b/docs/resources/ipam_ip.md @@ -0,0 +1,113 @@ +--- +subcategory: "IPAM" +page_title: "Scaleway: scaleway_ipam_ip" +--- + +# scaleway_ipam_ip + +Books and manages Scaleway IPAM IPs. + +## Example + +### Basic + +```hcl +resource "scaleway_vpc" "vpc01" { + name = "my vpc" +} + +resource "scaleway_vpc_private_network" "pn01" { + vpc_id = scaleway_vpc.vpc01.id + ipv4_subnet { + subnet = "172.16.32.0/22" + } +} + +resource "scaleway_ipam_ip" "ip01" { + source { + private_network_id = scaleway_vpc_private_network.pn01.id + } +} +``` + +### Request a specific IPv4 + +```hcl +resource "scaleway_vpc" "vpc01" { + name = "my vpc" +} + +resource "scaleway_vpc_private_network" "pn01" { + vpc_id = scaleway_vpc.vpc01.id + ipv4_subnet { + subnet = "172.16.32.0/22" + } +} + +resource "scaleway_ipam_ip" "ip01" { + address = "172.16.32.7/22" + source { + private_network_id = scaleway_vpc_private_network.pn01.id + } +} +``` + +### Request an IPv6 + +```hcl +resource "scaleway_vpc" "vpc01" { + name = "my vpc" +} + +resource "scaleway_vpc_private_network" "pn01" { + vpc_id = scaleway_vpc.vpc01.id + ipv6_subnets { + subnet = "fd46:78ab:30b8:177c::/64" + } +} + +resource "scaleway_ipam_ip" "ip01" { + is_ipv6 = true + source { + private_network_id = scaleway_vpc_private_network.pn01.id + } +} +``` + +## Arguments Reference + +The following arguments are supported: + +- `address` - (Optional) Request a specific IP in the requested source pool. +- `tags` - (Optional) The tags associated with the IP. +- `source` - (Required) The source in which to book the IP. + - `zonal` - The zone the IP lives in if the IP is a public zoned one + - `private_network_id` - The private network the IP lives in if the IP is a private IP. + - `subnet_id` - The private network subnet the IP lives in if the IP is a private IP in a private network. +- `is_ipv6` - (Optional) Defines whether to request an IPv6 instead of an IPv4. +- `region` - (Defaults to [provider](../index.md#region) `region`) The [region](../guides/regions_and_zones.md#regions) of the IP. +- `project_id` - (Defaults to [provider](../index.md#project_id) `project_id`) The ID of the project the IP is associated with. + +## Attributes Reference + +In addition to all above arguments, the following attributes are exported: + +- `id` - The ID of the IP in IPAM. +- `resource` - The IP resource. + - `id` - The ID of the resource that the IP is bound to. + - `type` - The type of resource the IP is attached to. + - `name` - The name of the resource the IP is attached to. + - `mac_address` - The MAC Address of the resource the IP is attached to. +- `created_at` - Date and time of IP's creation (RFC 3339 format). +- `updated_at` - Date and time of IP's last update (RFC 3339 format). +- `zone` - The zone of the IP. + +~> **Important:** IPAM IPs' IDs are [regional](../guides/regions_and_zones.md#resource-ids), which means they are of the form `{region}/{id}`, e.g. `fr-par/11111111-1111-1111-1111-111111111111 + +## Import + +IPAM IPs can be imported using the `{region}/{id}`, e.g. + +```bash +$ terraform import scaleway_ipam_ip.ip_demo fr-par/11111111-1111-1111-1111-111111111111 +``` diff --git a/scaleway/helpers.go b/scaleway/helpers.go index 20c8021038..eaf4581442 100644 --- a/scaleway/helpers.go +++ b/scaleway/helpers.go @@ -1137,3 +1137,27 @@ func testAccCheckScalewayResourceIDChanged(resourceName string, resourceID *stri return nil } } + +// testAccCheckScalewayResourceRawIDMatches asserts the equality of IDs from two specified attributes of two Scaleway resources. +func testAccCheckScalewayResourceRawIDMatches(res1, attr1, res2, attr2 string) resource.TestCheckFunc { + return func(s *terraform.State) error { + rs1, ok1 := s.RootModule().Resources[res1] + if !ok1 { + return fmt.Errorf("not found: %s", res1) + } + + rs2, ok2 := s.RootModule().Resources[res2] + if !ok2 { + return fmt.Errorf("not found: %s", res2) + } + + id1 := expandID(rs1.Primary.Attributes[attr1]) + id2 := expandID(rs2.Primary.Attributes[attr2]) + + if id1 != id2 { + return fmt.Errorf("ID mismatch: %s from resource %s does not match ID %s from resource %s", id1, res1, id2, res2) + } + + return nil + } +} diff --git a/scaleway/helpers_instance.go b/scaleway/helpers_instance.go index a863897711..982766c90d 100644 --- a/scaleway/helpers_instance.go +++ b/scaleway/helpers_instance.go @@ -13,7 +13,7 @@ import ( "github.com/hashicorp/terraform-plugin-log/tflog" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" "github.com/scaleway/scaleway-sdk-go/api/instance/v1" - "github.com/scaleway/scaleway-sdk-go/api/vpc/v1" + "github.com/scaleway/scaleway-sdk-go/api/vpc/v2" "github.com/scaleway/scaleway-sdk-go/scw" ) @@ -292,15 +292,19 @@ func preparePrivateNIC( zonedID, pnExist := r["pn_id"] privateNetworkID := expandID(zonedID.(string)) if pnExist { + region, err := server.Zone.Region() + if err != nil { + return nil, err + } currentPN, err := vpcAPI.GetPrivateNetwork(&vpc.GetPrivateNetworkRequest{ PrivateNetworkID: expandID(privateNetworkID), - Zone: server.Zone, + Region: region, }, scw.WithContext(ctx)) if err != nil { return nil, err } query := &instance.CreatePrivateNICRequest{ - Zone: currentPN.Zone, + Zone: server.Zone, ServerID: server.ID, PrivateNetworkID: currentPN.ID, } diff --git a/scaleway/helpers_ipam.go b/scaleway/helpers_ipam.go index c20a1baf03..2521114fe6 100644 --- a/scaleway/helpers_ipam.go +++ b/scaleway/helpers_ipam.go @@ -1,6 +1,7 @@ package scaleway import ( + "net" "strings" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" @@ -22,6 +23,18 @@ func ipamAPIWithRegion(d *schema.ResourceData, m interface{}) (*ipam.API, scw.Re return ipamAPI, region, nil } +// ipamAPIWithRegionAndID returns a new ipam API with locality and ID extracted from the state +func ipamAPIWithRegionAndID(m interface{}, id string) (*ipam.API, scw.Region, string, error) { + meta := m.(*Meta) + ipamAPI := ipam.NewAPI(meta.scwClient) + + region, ID, err := parseRegionalID(id) + if err != nil { + return nil, "", "", err + } + return ipamAPI, region, ID, err +} + // expandLastID expand the last ID in a potential composed ID // region/id1/id2 -> id2 // region/id1 -> id1 @@ -39,3 +52,78 @@ func expandLastID(i interface{}) string { return composedID } + +func expandIPSource(raw interface{}) *ipam.Source { + if raw == nil || len(raw.([]interface{})) != 1 { + return nil + } + + rawMap := raw.([]interface{})[0].(map[string]interface{}) + return &ipam.Source{ + Zonal: expandStringPtr(rawMap["zonal"].(string)), + PrivateNetworkID: expandStringPtr(expandID(rawMap["private_network_id"].(string))), + SubnetID: expandStringPtr(rawMap["subnet_id"].(string)), + } +} + +func flattenIPSource(source *ipam.Source, privateNetworkID string) interface{} { + if source == nil { + return nil + } + return []map[string]interface{}{ + { + "zonal": flattenStringPtr(source.Zonal), + "private_network_id": privateNetworkID, + "subnet_id": flattenStringPtr(source.SubnetID), + }, + } +} + +func flattenIPResource(resource *ipam.Resource) interface{} { + if resource == nil { + return nil + } + return []map[string]interface{}{ + { + "type": resource.Type.String(), + "id": resource.ID, + "mac_address": flattenStringPtr(resource.MacAddress), + "name": flattenStringPtr(resource.Name), + }, + } +} + +func checkSubnetIDInFlattenedSubnets(subnetID string, flattenedSubnets interface{}) bool { + for _, subnet := range flattenedSubnets.([]map[string]interface{}) { + if subnet["id"].(string) == subnetID { + return true + } + } + return false +} + +func diffSuppressFuncStandaloneIPandCIDR(k, old, new string, _ *schema.ResourceData) bool { + oldIP, oldNet, errOld := net.ParseCIDR(old) + if errOld != nil { + oldIP = net.ParseIP(old) + } + + newIP, newNet, errNew := net.ParseCIDR(new) + if errNew != nil { + newIP = net.ParseIP(new) + } + + if oldIP != nil && newIP != nil && oldIP.Equal(newIP) { + return true + } + + if oldNet != nil && newIP != nil && oldNet.Contains(newIP) { + return true + } + + if newNet != nil && oldIP != nil && newNet.Contains(oldIP) { + return true + } + + return false +} diff --git a/scaleway/helpers_vpc.go b/scaleway/helpers_vpc.go index a7973e49e6..9778f03db3 100644 --- a/scaleway/helpers_vpc.go +++ b/scaleway/helpers_vpc.go @@ -51,13 +51,13 @@ func vpcAPIWithRegionAndID(m interface{}, id string) (*v2.API, scw.Region, strin return vpcAPI, region, ID, err } -func vpcAPI(m interface{}) (*v1.API, error) { +func vpcAPI(m interface{}) (*v2.API, error) { meta, ok := m.(*Meta) if !ok { return nil, fmt.Errorf("wrong type: %T", m) } - return v1.NewAPI(meta.scwClient), nil + return v2.NewAPI(meta.scwClient), nil } func expandSubnets(d *schema.ResourceData) (ipv4Subnets []scw.IPNet, ipv6Subnets []scw.IPNet, err error) { diff --git a/scaleway/provider.go b/scaleway/provider.go index cfe0b4aa56..06e299fac8 100644 --- a/scaleway/provider.go +++ b/scaleway/provider.go @@ -133,6 +133,7 @@ func Provider(config *ProviderConfig) plugin.ProviderFunc { "scaleway_iot_device": resourceScalewayIotDevice(), "scaleway_iot_route": resourceScalewayIotRoute(), "scaleway_iot_network": resourceScalewayIotNetwork(), + "scaleway_ipam_ip": resourceScalewayIPAMIP(), "scaleway_k8s_cluster": resourceScalewayK8SCluster(), "scaleway_k8s_pool": resourceScalewayK8SPool(), "scaleway_lb": resourceScalewayLb(), diff --git a/scaleway/resource_ipam_ip.go b/scaleway/resource_ipam_ip.go new file mode 100644 index 0000000000..9d5815590a --- /dev/null +++ b/scaleway/resource_ipam_ip.go @@ -0,0 +1,271 @@ +package scaleway + +import ( + "context" + "fmt" + "net" + + "github.com/hashicorp/terraform-plugin-sdk/v2/diag" + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" + "github.com/scaleway/scaleway-sdk-go/api/ipam/v1" + "github.com/scaleway/scaleway-sdk-go/api/vpc/v2" + "github.com/scaleway/scaleway-sdk-go/scw" +) + +func resourceScalewayIPAMIP() *schema.Resource { + return &schema.Resource{ + CreateContext: resourceScalewayIPAMIPCreate, + ReadContext: resourceScalewayIPAMIPRead, + UpdateContext: resourceScalewayIPAMIPUpdate, + DeleteContext: resourceScalewayIPAMIPDelete, + Importer: &schema.ResourceImporter{ + StateContext: schema.ImportStatePassthroughContext, + }, + SchemaVersion: 0, + Schema: map[string]*schema.Schema{ + "address": { + Type: schema.TypeString, + Optional: true, + Computed: true, + Description: "Request a specific IP in the requested source pool", + ValidateFunc: validateStandaloneIPorCIDR(), + DiffSuppressFunc: diffSuppressFuncStandaloneIPandCIDR, + }, + "source": { + Type: schema.TypeList, + Required: true, + Description: "The source in which to book the IP", + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "zonal": { + Type: schema.TypeString, + Optional: true, + Computed: true, + Description: "Zone the IP lives in if the IP is a public zoned one", + }, + "private_network_id": { + Type: schema.TypeString, + Optional: true, + Computed: true, + Description: "Private Network the IP lives in if the IP is a private IP", + DiffSuppressFunc: diffSuppressFuncLocality, + }, + "subnet_id": { + Type: schema.TypeString, + Optional: true, + Computed: true, + Description: "Private Network subnet the IP lives in if the IP is a private IP in a Private Network", + }, + }, + }, + }, + "is_ipv6": { + Type: schema.TypeBool, + Optional: true, + ForceNew: true, + Default: false, + Description: "Request an IPv6 instead of an IPv4", + }, + "tags": { + Type: schema.TypeList, + Optional: true, + Description: "The tags associated with the IP", + Elem: &schema.Schema{ + Type: schema.TypeString, + }, + }, + "project_id": projectIDSchema(), + "region": regionSchema(), + // Computed elements + "resource": { + Type: schema.TypeList, + Computed: true, + Description: "The IP resource", + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "type": { + Type: schema.TypeString, + Computed: true, + Description: "Type of resource the IP is attached to", + }, + "id": { + Type: schema.TypeString, + Computed: true, + Description: "ID of the resource the IP is attached to", + }, + "mac_address": { + Type: schema.TypeString, + Computed: true, + Description: "MAC of the resource the IP is attached to", + }, + "name": { + Type: schema.TypeString, + Computed: true, + Description: "Name of the resource the IP is attached to", + }, + }, + }, + }, + "created_at": { + Type: schema.TypeString, + Computed: true, + Description: "The date and time of the creation of the IP", + }, + "updated_at": { + Type: schema.TypeString, + Computed: true, + Description: "The date and time of the last update of the IP", + }, + "zone": zoneComputedSchema(), + }, + } +} + +func resourceScalewayIPAMIPCreate(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics { + ipamApi, region, err := ipamAPIWithRegion(d, meta) + if err != nil { + return diag.FromErr(err) + } + + req := &ipam.BookIPRequest{ + Region: region, + ProjectID: d.Get("project_id").(string), + IsIPv6: d.Get("is_ipv6").(bool), + Tags: expandStrings(d.Get("tags")), + } + + address, addressOk := d.GetOk("address") + if addressOk { + addressStr := address.(string) + parsedIP, _, err := net.ParseCIDR(addressStr) + if err != nil { + parsedIP = net.ParseIP(addressStr) + if parsedIP == nil { + return diag.FromErr(fmt.Errorf("error parsing IP address: %s", err)) + } + } + req.Address = scw.IPPtr(parsedIP) + } + + if source, ok := d.GetOk("source"); ok { + req.Source = expandIPSource(source) + } + + res, err := ipamApi.BookIP(req, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + + d.SetId(newRegionalIDString(region, res.ID)) + + return resourceScalewayIPAMIPRead(ctx, d, meta) +} + +func resourceScalewayIPAMIPRead(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics { + ipamApi, region, ID, err := ipamAPIWithRegionAndID(meta, d.Id()) + if err != nil { + return diag.FromErr(err) + } + vpcAPI, err := vpcAPI(meta) + if err != nil { + return diag.FromErr(err) + } + + res, err := ipamApi.GetIP(&ipam.GetIPRequest{ + Region: region, + IPID: ID, + }, scw.WithContext(ctx)) + if err != nil { + if is404Error(err) { + d.SetId("") + return nil + } + return diag.FromErr(err) + } + + privateNetworkID := "" + if source, ok := d.GetOk("source"); ok { + sourceData := expandIPSource(source) + if sourceData.PrivateNetworkID != nil { + pn, err := vpcAPI.GetPrivateNetwork(&vpc.GetPrivateNetworkRequest{ + PrivateNetworkID: *sourceData.PrivateNetworkID, + Region: region, + }, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + + ipv4Subnets, ipv6Subnets := flattenAndSortSubnets(pn.Subnets) + found := false + + // Check if the subnet ID is present in the flattened subnets based on the "is_ipv6" field. + if d.Get("is_ipv6").(bool) { + found = checkSubnetIDInFlattenedSubnets(*res.Source.SubnetID, ipv6Subnets) + } else { + found = checkSubnetIDInFlattenedSubnets(*res.Source.SubnetID, ipv4Subnets) + } + + // If found, set the private network ID in the resource state + if found { + privateNetworkID = pn.ID + } + } + + } + + address, err := flattenIPNet(res.Address) + if err != nil { + return diag.FromErr(err) + } + _ = d.Set("address", address) + _ = d.Set("source", flattenIPSource(res.Source, privateNetworkID)) + _ = d.Set("resource", flattenIPResource(res.Resource)) + _ = d.Set("project_id", res.ProjectID) + _ = d.Set("created_at", flattenTime(res.CreatedAt)) + _ = d.Set("updated_at", flattenTime(res.UpdatedAt)) + _ = d.Set("is_ipv6", res.IsIPv6) + _ = d.Set("region", region) + if res.Zone != nil { + _ = d.Set("zone", res.Zone.String()) + } + if len(res.Tags) > 0 { + _ = d.Set("tags", res.Tags) + } + + return nil +} + +func resourceScalewayIPAMIPUpdate(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics { + ipamApi, region, ID, err := ipamAPIWithRegionAndID(meta, d.Id()) + if err != nil { + return diag.FromErr(err) + } + + _, err = ipamApi.UpdateIP(&ipam.UpdateIPRequest{ + IPID: ID, + Region: region, + Tags: expandUpdatedStringsPtr(d.Get("tags")), + }, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + + return resourceScalewayIPAMIPRead(ctx, d, meta) +} + +func resourceScalewayIPAMIPDelete(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics { + ipamApi, region, ID, err := ipamAPIWithRegionAndID(meta, d.Id()) + if err != nil { + return diag.FromErr(err) + } + + err = ipamApi.ReleaseIP(&ipam.ReleaseIPRequest{ + Region: region, + IPID: ID, + }, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + + return nil +} diff --git a/scaleway/resource_ipam_ip_test.go b/scaleway/resource_ipam_ip_test.go new file mode 100644 index 0000000000..72b3013b62 --- /dev/null +++ b/scaleway/resource_ipam_ip_test.go @@ -0,0 +1,281 @@ +package scaleway + +import ( + "fmt" + "testing" + + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" + "github.com/hashicorp/terraform-plugin-sdk/v2/terraform" + "github.com/scaleway/scaleway-sdk-go/api/ipam/v1" + "github.com/scaleway/scaleway-sdk-go/scw" +) + +func init() { + resource.AddTestSweepers("scaleway_ipam_ip", &resource.Sweeper{ + Name: "scaleway_ipam_ip", + F: testSweepIPAMIP, + }) +} + +func testSweepIPAMIP(_ string) error { + return sweepRegions(scw.AllRegions, func(scwClient *scw.Client, region scw.Region) error { + ipamAPI := ipam.NewAPI(scwClient) + + l.Debugf("sweeper: deleting the IPs in (%s)", region) + + listIPs, err := ipamAPI.ListIPs(&ipam.ListIPsRequest{Region: region}, scw.WithAllPages()) + if err != nil { + return fmt.Errorf("error listing ips in (%s) in sweeper: %s", region, err) + } + + for _, v := range listIPs.IPs { + err := ipamAPI.ReleaseIP(&ipam.ReleaseIPRequest{ + IPID: v.ID, + Region: region, + }) + if err != nil { + l.Debugf("sweeper: error (%s)", err) + + return fmt.Errorf("error releasing IP in sweeper: %s", err) + } + } + + return nil + }) +} + +func TestAccScalewayIPAMIP_Basic(t *testing.T) { + tt := NewTestTools(t) + defer tt.Cleanup() + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { testAccPreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: testAccCheckScalewayIPAMIPDestroy(tt), + Steps: []resource.TestStep{ + { + Config: ` + resource scaleway_vpc vpc01 { + name = "my vpc" + } + + resource scaleway_vpc_private_network pn01 { + vpc_id = scaleway_vpc.vpc01.id + ipv4_subnet { + subnet = "172.16.32.0/22" + } + } + + resource scaleway_ipam_ip ip01 { + source { + private_network_id = scaleway_vpc_private_network.pn01.id + } + } + `, + Check: resource.ComposeTestCheckFunc( + testAccCheckScalewayIPAMIPExists(tt, "scaleway_ipam_ip.ip01"), + resource.TestCheckResourceAttr("scaleway_ipam_ip.ip01", "is_ipv6", "false"), + testAccCheckScalewayResourceRawIDMatches("scaleway_ipam_ip.ip01", "source.0.private_network_id", "scaleway_vpc_private_network.pn01", "id"), + resource.TestCheckResourceAttrSet("scaleway_ipam_ip.ip01", "source.0.subnet_id"), + resource.TestCheckResourceAttrSet("scaleway_ipam_ip.ip01", "address"), + resource.TestCheckResourceAttrSet("scaleway_ipam_ip.ip01", "created_at"), + resource.TestCheckResourceAttrSet("scaleway_ipam_ip.ip01", "updated_at"), + ), + }, + }, + }) +} + +func TestAccScalewayIPAMIP_WithStandaloneAddress(t *testing.T) { + tt := NewTestTools(t) + defer tt.Cleanup() + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { testAccPreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: testAccCheckScalewayIPAMIPDestroy(tt), + Steps: []resource.TestStep{ + { + Config: ` + resource scaleway_vpc vpc01 { + name = "my vpc" + } + + resource scaleway_vpc_private_network pn01 { + vpc_id = scaleway_vpc.vpc01.id + ipv4_subnet { + subnet = "172.16.32.0/22" + } + } + + resource scaleway_ipam_ip ip01 { + address = "172.16.32.7" + source { + private_network_id = scaleway_vpc_private_network.pn01.id + } + } + `, + Check: resource.ComposeTestCheckFunc( + testAccCheckScalewayIPAMIPExists(tt, "scaleway_ipam_ip.ip01"), + resource.TestCheckResourceAttr("scaleway_ipam_ip.ip01", "address", "172.16.32.7/22"), + ), + }, + }, + }) +} +func TestAccScalewayIPAMIP_WithCIDRAddress(t *testing.T) { + tt := NewTestTools(t) + defer tt.Cleanup() + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { testAccPreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: testAccCheckScalewayIPAMIPDestroy(tt), + Steps: []resource.TestStep{ + { + Config: ` + resource scaleway_vpc vpc01 { + name = "my vpc" + } + + resource scaleway_vpc_private_network pn01 { + vpc_id = scaleway_vpc.vpc01.id + ipv4_subnet { + subnet = "172.16.32.0/22" + } + } + + resource scaleway_ipam_ip ip01 { + address = "172.16.32.5/22" + source { + private_network_id = scaleway_vpc_private_network.pn01.id + } + } + `, + Check: resource.ComposeTestCheckFunc( + testAccCheckScalewayIPAMIPExists(tt, "scaleway_ipam_ip.ip01"), + resource.TestCheckResourceAttr("scaleway_ipam_ip.ip01", "address", "172.16.32.5/22"), + ), + }, + }, + }) +} + +func TestAccScalewayIPAMIP_WithTags(t *testing.T) { + tt := NewTestTools(t) + defer tt.Cleanup() + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { testAccPreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: testAccCheckScalewayIPAMIPDestroy(tt), + Steps: []resource.TestStep{ + { + Config: ` + resource scaleway_vpc vpc01 { + name = "my vpc" + } + + resource scaleway_vpc_private_network pn01 { + vpc_id = scaleway_vpc.vpc01.id + ipv4_subnet { + subnet = "172.16.32.0/22" + } + } + + resource scaleway_ipam_ip ip01 { + source { + private_network_id = scaleway_vpc_private_network.pn01.id + } + tags = [ "terraform-test", "ipam" ] + } + `, + Check: resource.ComposeTestCheckFunc( + testAccCheckScalewayIPAMIPExists(tt, "scaleway_ipam_ip.ip01"), + resource.TestCheckResourceAttr("scaleway_ipam_ip.ip01", "tags.#", "2"), + resource.TestCheckResourceAttr("scaleway_ipam_ip.ip01", "tags.0", "terraform-test"), + resource.TestCheckResourceAttr("scaleway_ipam_ip.ip01", "tags.1", "ipam"), + ), + }, + { + Config: ` + resource scaleway_vpc vpc01 { + name = "my vpc" + } + + resource scaleway_vpc_private_network pn01 { + vpc_id = scaleway_vpc.vpc01.id + ipv4_subnet { + subnet = "172.16.32.0/22" + } + } + + resource scaleway_ipam_ip ip01 { + source { + private_network_id = scaleway_vpc_private_network.pn01.id + } + tags = [ "terraform-test", "ipam", "updated" ] + } + `, + Check: resource.ComposeTestCheckFunc( + testAccCheckScalewayIPAMIPExists(tt, "scaleway_ipam_ip.ip01"), + resource.TestCheckResourceAttr("scaleway_ipam_ip.ip01", "tags.#", "3"), + resource.TestCheckResourceAttr("scaleway_ipam_ip.ip01", "tags.0", "terraform-test"), + resource.TestCheckResourceAttr("scaleway_ipam_ip.ip01", "tags.1", "ipam"), + resource.TestCheckResourceAttr("scaleway_ipam_ip.ip01", "tags.2", "updated"), + ), + }, + }, + }) +} + +func testAccCheckScalewayIPAMIPExists(tt *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) + } + + ipamApi, region, ID, err := ipamAPIWithRegionAndID(tt.Meta, rs.Primary.ID) + if err != nil { + return err + } + + _, err = ipamApi.GetIP(&ipam.GetIPRequest{ + IPID: ID, + Region: region, + }) + + if err != nil { + return err + } + + return nil + } +} + +func testAccCheckScalewayIPAMIPDestroy(tt *TestTools) resource.TestCheckFunc { + return func(state *terraform.State) error { + for _, rs := range state.RootModule().Resources { + if rs.Type != "scaleway_ipam_ip" { + continue + } + + ipamApi, region, ID, err := ipamAPIWithRegionAndID(tt.Meta, rs.Primary.ID) + if err != nil { + return err + } + + _, err = ipamApi.GetIP(&ipam.GetIPRequest{ + IPID: ID, + Region: region, + }) + + if err == nil { + return fmt.Errorf("IP (%s) still exists", rs.Primary.ID) + } + + if !is404Error(err) { + return err + } + } + + return nil + } +} diff --git a/scaleway/resource_vpc_private_network_test.go b/scaleway/resource_vpc_private_network_test.go index 61876536f9..337a22fe69 100644 --- a/scaleway/resource_vpc_private_network_test.go +++ b/scaleway/resource_vpc_private_network_test.go @@ -12,8 +12,9 @@ import ( func init() { resource.AddTestSweepers("scaleway_vpc_private_network", &resource.Sweeper{ - Name: "scaleway_vpc_private_network", - F: testSweepVPCPrivateNetwork, + Name: "scaleway_vpc_private_network", + F: testSweepVPCPrivateNetwork, + Dependencies: []string{"scaleway_ipam_ip"}, }) } diff --git a/scaleway/testdata/ipamip-basic.cassette.yaml b/scaleway/testdata/ipamip-basic.cassette.yaml new file mode 100644 index 0000000000..80e5003ab1 --- /dev/null +++ b/scaleway/testdata/ipamip-basic.cassette.yaml @@ -0,0 +1,536 @@ +--- +version: 1 +interactions: +- request: + body: '{"name":"my vpc","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST + response: + body: '{"created_at":"2023-10-27T07:17:20.025687Z","id":"e49f4d63-a354-40bf-a77a-71a88206128d","is_default":false,"name":"my + vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","tags":[],"updated_at":"2023-10-27T07:17:20.025687Z"}' + headers: + Content-Length: + - "338" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Oct 2023 07:17:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cf278fb3-2692-4150-9c95-9b796379ad41 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e49f4d63-a354-40bf-a77a-71a88206128d + method: GET + response: + body: '{"created_at":"2023-10-27T07:17:20.025687Z","id":"e49f4d63-a354-40bf-a77a-71a88206128d","is_default":false,"name":"my + vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","tags":[],"updated_at":"2023-10-27T07:17:20.025687Z"}' + headers: + Content-Length: + - "338" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Oct 2023 07:17:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 490217b7-caa0-4a0b-a409-67cfcbbdd55c + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"tf-pn-gifted-tesla","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null,"subnets":["172.16.32.0/22"],"vpc_id":"e49f4d63-a354-40bf-a77a-71a88206128d"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + body: '{"created_at":"2023-10-27T07:17:20.230502Z","dhcp_enabled":true,"id":"dd7a6c72-9dc4-4b24-9e7a-0046e2ad858d","name":"tf-pn-gifted-tesla","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:17:20.230502Z","id":"51e5b8a8-b307-465e-a47e-b296a3064812","subnet":"172.16.32.0/22","updated_at":"2023-10-27T07:17:20.230502Z"},{"created_at":"2023-10-27T07:17:20.230502Z","id":"c5a11d0a-c730-44f8-8304-09792660b8a8","subnet":"fd46:78ab:30b8:3e08::/64","updated_at":"2023-10-27T07:17:20.230502Z"}],"tags":[],"updated_at":"2023-10-27T07:17:20.230502Z","vpc_id":"e49f4d63-a354-40bf-a77a-71a88206128d"}' + headers: + Content-Length: + - "719" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Oct 2023 07:17:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 832349a1-9311-4a84-a816-ff85bca6b327 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dd7a6c72-9dc4-4b24-9e7a-0046e2ad858d + method: GET + response: + body: '{"created_at":"2023-10-27T07:17:20.230502Z","dhcp_enabled":true,"id":"dd7a6c72-9dc4-4b24-9e7a-0046e2ad858d","name":"tf-pn-gifted-tesla","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:17:20.230502Z","id":"51e5b8a8-b307-465e-a47e-b296a3064812","subnet":"172.16.32.0/22","updated_at":"2023-10-27T07:17:20.230502Z"},{"created_at":"2023-10-27T07:17:20.230502Z","id":"c5a11d0a-c730-44f8-8304-09792660b8a8","subnet":"fd46:78ab:30b8:3e08::/64","updated_at":"2023-10-27T07:17:20.230502Z"}],"tags":[],"updated_at":"2023-10-27T07:17:20.230502Z","vpc_id":"e49f4d63-a354-40bf-a77a-71a88206128d"}' + headers: + Content-Length: + - "719" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Oct 2023 07:17:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 054baf85-17a9-48cb-8fbf-b17becb07634 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"dd7a6c72-9dc4-4b24-9e7a-0046e2ad858d"},"is_ipv6":false,"address":null,"tags":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips + method: POST + response: + body: '{"address":"172.16.32.2/22","created_at":"2023-10-27T07:17:21.212540Z","id":"06d6d1a9-3284-4f94-9538-01c8dd8f8390","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"source":{"subnet_id":"51e5b8a8-b307-465e-a47e-b296a3064812"},"tags":[],"updated_at":"2023-10-27T07:17:21.212540Z","zone":null}' + headers: + Content-Length: + - "354" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Oct 2023 07:17:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f5ca73de-effb-477d-b8c0-bff38330a024 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/06d6d1a9-3284-4f94-9538-01c8dd8f8390 + method: GET + response: + body: '{"address":"172.16.32.2/22","created_at":"2023-10-27T07:17:21.212540Z","id":"06d6d1a9-3284-4f94-9538-01c8dd8f8390","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"source":{"subnet_id":"51e5b8a8-b307-465e-a47e-b296a3064812"},"tags":[],"updated_at":"2023-10-27T07:17:21.212540Z","zone":null}' + headers: + Content-Length: + - "354" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Oct 2023 07:17:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 175277e8-09c2-42b1-aa16-a4c16ce2b51b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dd7a6c72-9dc4-4b24-9e7a-0046e2ad858d + method: GET + response: + body: '{"created_at":"2023-10-27T07:17:20.230502Z","dhcp_enabled":true,"id":"dd7a6c72-9dc4-4b24-9e7a-0046e2ad858d","name":"tf-pn-gifted-tesla","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:17:20.230502Z","id":"51e5b8a8-b307-465e-a47e-b296a3064812","subnet":"172.16.32.0/22","updated_at":"2023-10-27T07:17:20.230502Z"},{"created_at":"2023-10-27T07:17:20.230502Z","id":"c5a11d0a-c730-44f8-8304-09792660b8a8","subnet":"fd46:78ab:30b8:3e08::/64","updated_at":"2023-10-27T07:17:20.230502Z"}],"tags":[],"updated_at":"2023-10-27T07:17:20.230502Z","vpc_id":"e49f4d63-a354-40bf-a77a-71a88206128d"}' + headers: + Content-Length: + - "719" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Oct 2023 07:17:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a4707ac8-5ab4-4d5e-a409-ba07d17fbb65 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/06d6d1a9-3284-4f94-9538-01c8dd8f8390 + method: GET + response: + body: '{"address":"172.16.32.2/22","created_at":"2023-10-27T07:17:21.212540Z","id":"06d6d1a9-3284-4f94-9538-01c8dd8f8390","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"source":{"subnet_id":"51e5b8a8-b307-465e-a47e-b296a3064812"},"tags":[],"updated_at":"2023-10-27T07:17:21.212540Z","zone":null}' + headers: + Content-Length: + - "354" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Oct 2023 07:17:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f165a018-14ba-4519-9e1c-45208807a258 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e49f4d63-a354-40bf-a77a-71a88206128d + method: GET + response: + body: '{"created_at":"2023-10-27T07:17:20.025687Z","id":"e49f4d63-a354-40bf-a77a-71a88206128d","is_default":false,"name":"my + vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","tags":[],"updated_at":"2023-10-27T07:17:20.025687Z"}' + headers: + Content-Length: + - "338" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Oct 2023 07:17:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a4468786-9447-4c43-b3af-0d3d49dfcb09 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dd7a6c72-9dc4-4b24-9e7a-0046e2ad858d + method: GET + response: + body: '{"created_at":"2023-10-27T07:17:20.230502Z","dhcp_enabled":true,"id":"dd7a6c72-9dc4-4b24-9e7a-0046e2ad858d","name":"tf-pn-gifted-tesla","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:17:20.230502Z","id":"51e5b8a8-b307-465e-a47e-b296a3064812","subnet":"172.16.32.0/22","updated_at":"2023-10-27T07:17:20.230502Z"},{"created_at":"2023-10-27T07:17:20.230502Z","id":"c5a11d0a-c730-44f8-8304-09792660b8a8","subnet":"fd46:78ab:30b8:3e08::/64","updated_at":"2023-10-27T07:17:20.230502Z"}],"tags":[],"updated_at":"2023-10-27T07:17:20.230502Z","vpc_id":"e49f4d63-a354-40bf-a77a-71a88206128d"}' + headers: + Content-Length: + - "719" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Oct 2023 07:17:22 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a022390d-ed49-449a-af72-2f62f3af36f4 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/06d6d1a9-3284-4f94-9538-01c8dd8f8390 + method: GET + response: + body: '{"address":"172.16.32.2/22","created_at":"2023-10-27T07:17:21.212540Z","id":"06d6d1a9-3284-4f94-9538-01c8dd8f8390","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"source":{"subnet_id":"51e5b8a8-b307-465e-a47e-b296a3064812"},"tags":[],"updated_at":"2023-10-27T07:17:21.212540Z","zone":null}' + headers: + Content-Length: + - "354" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Oct 2023 07:17:22 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 12d26c15-c869-488d-9dfa-f56244147d2f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dd7a6c72-9dc4-4b24-9e7a-0046e2ad858d + method: GET + response: + body: '{"created_at":"2023-10-27T07:17:20.230502Z","dhcp_enabled":true,"id":"dd7a6c72-9dc4-4b24-9e7a-0046e2ad858d","name":"tf-pn-gifted-tesla","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:17:20.230502Z","id":"51e5b8a8-b307-465e-a47e-b296a3064812","subnet":"172.16.32.0/22","updated_at":"2023-10-27T07:17:20.230502Z"},{"created_at":"2023-10-27T07:17:20.230502Z","id":"c5a11d0a-c730-44f8-8304-09792660b8a8","subnet":"fd46:78ab:30b8:3e08::/64","updated_at":"2023-10-27T07:17:20.230502Z"}],"tags":[],"updated_at":"2023-10-27T07:17:20.230502Z","vpc_id":"e49f4d63-a354-40bf-a77a-71a88206128d"}' + headers: + Content-Length: + - "719" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Oct 2023 07:17:22 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7938a46f-94f2-4085-8589-f375ac0ec3f4 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/06d6d1a9-3284-4f94-9538-01c8dd8f8390 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Oct 2023 07:17:22 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 729b1add-2b6f-4e43-8b7c-3cb543d7c6ba + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dd7a6c72-9dc4-4b24-9e7a-0046e2ad858d + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Oct 2023 07:17:25 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 16744d49-71e8-4220-9508-9afdeb716c98 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e49f4d63-a354-40bf-a77a-71a88206128d + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Oct 2023 07:17:25 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 13db11e8-bd9a-43f5-aecb-e0d638677a33 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/06d6d1a9-3284-4f94-9538-01c8dd8f8390 + method: GET + response: + body: '{"message":"resource is not found","resource":"ip","resource_id":"06d6d1a9-3284-4f94-9538-01c8dd8f8390","type":"not_found"}' + headers: + Content-Length: + - "123" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Oct 2023 07:17:25 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f4fb72c6-798b-4c0a-a526-66f75c0ce2db + status: 404 Not Found + code: 404 + duration: "" diff --git a/scaleway/testdata/ipamip-with-cidr-address.cassette.yaml b/scaleway/testdata/ipamip-with-cidr-address.cassette.yaml new file mode 100644 index 0000000000..bedbd8a6de --- /dev/null +++ b/scaleway/testdata/ipamip-with-cidr-address.cassette.yaml @@ -0,0 +1,536 @@ +--- +version: 1 +interactions: +- request: + body: '{"name":"my vpc","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST + response: + body: '{"created_at":"2023-10-26T19:00:45.458328Z","id":"71f2a3bf-e5d1-4381-9c0f-bf656254108d","is_default":false,"name":"my + vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","tags":[],"updated_at":"2023-10-26T19:00:45.458328Z"}' + headers: + Content-Length: + - "338" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6c3bca02-d169-4add-8d41-795b0b514856 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/71f2a3bf-e5d1-4381-9c0f-bf656254108d + method: GET + response: + body: '{"created_at":"2023-10-26T19:00:45.458328Z","id":"71f2a3bf-e5d1-4381-9c0f-bf656254108d","is_default":false,"name":"my + vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","tags":[],"updated_at":"2023-10-26T19:00:45.458328Z"}' + headers: + Content-Length: + - "338" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:46 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5fa7018e-1d95-45d0-b1e9-e6eed30d3180 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"tf-pn-distracted-bartik","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null,"subnets":["172.16.32.0/22"],"vpc_id":"71f2a3bf-e5d1-4381-9c0f-bf656254108d"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + body: '{"created_at":"2023-10-26T19:00:46.231044Z","dhcp_enabled":true,"id":"f77c2976-764a-4d2a-b001-4f42708d53c3","name":"tf-pn-distracted-bartik","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-26T19:00:46.231044Z","id":"e726046d-f1e6-4900-9bfd-1f5ad6109b37","subnet":"172.16.32.0/22","updated_at":"2023-10-26T19:00:46.231044Z"},{"created_at":"2023-10-26T19:00:46.231044Z","id":"1febe4ae-c49e-43cc-be0b-0f0d025b48b9","subnet":"fd46:78ab:30b8:b6b::/64","updated_at":"2023-10-26T19:00:46.231044Z"}],"tags":[],"updated_at":"2023-10-26T19:00:46.231044Z","vpc_id":"71f2a3bf-e5d1-4381-9c0f-bf656254108d"}' + headers: + Content-Length: + - "723" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:47 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9ec06757-325f-498c-a242-116a4804882c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f77c2976-764a-4d2a-b001-4f42708d53c3 + method: GET + response: + body: '{"created_at":"2023-10-26T19:00:46.231044Z","dhcp_enabled":true,"id":"f77c2976-764a-4d2a-b001-4f42708d53c3","name":"tf-pn-distracted-bartik","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-26T19:00:46.231044Z","id":"e726046d-f1e6-4900-9bfd-1f5ad6109b37","subnet":"172.16.32.0/22","updated_at":"2023-10-26T19:00:46.231044Z"},{"created_at":"2023-10-26T19:00:46.231044Z","id":"1febe4ae-c49e-43cc-be0b-0f0d025b48b9","subnet":"fd46:78ab:30b8:b6b::/64","updated_at":"2023-10-26T19:00:46.231044Z"}],"tags":[],"updated_at":"2023-10-26T19:00:46.231044Z","vpc_id":"71f2a3bf-e5d1-4381-9c0f-bf656254108d"}' + headers: + Content-Length: + - "723" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:47 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1abac1f9-941f-4aaa-8687-85ada82b5131 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"f77c2976-764a-4d2a-b001-4f42708d53c3"},"is_ipv6":false,"address":"172.16.32.5","tags":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips + method: POST + response: + body: '{"address":"172.16.32.5/22","created_at":"2023-10-26T19:00:48.050923Z","id":"f2ebb1de-3845-4ffb-8595-032b4ce49413","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"source":{"subnet_id":"e726046d-f1e6-4900-9bfd-1f5ad6109b37"},"tags":[],"updated_at":"2023-10-26T19:00:48.050923Z","zone":null}' + headers: + Content-Length: + - "354" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:48 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 42f04862-48b9-4c84-93bc-4c4076c7329f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f2ebb1de-3845-4ffb-8595-032b4ce49413 + method: GET + response: + body: '{"address":"172.16.32.5/22","created_at":"2023-10-26T19:00:48.050923Z","id":"f2ebb1de-3845-4ffb-8595-032b4ce49413","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"source":{"subnet_id":"e726046d-f1e6-4900-9bfd-1f5ad6109b37"},"tags":[],"updated_at":"2023-10-26T19:00:48.050923Z","zone":null}' + headers: + Content-Length: + - "354" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:48 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 81531933-1c2a-4a6f-b94e-53bc969eacf8 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f77c2976-764a-4d2a-b001-4f42708d53c3 + method: GET + response: + body: '{"created_at":"2023-10-26T19:00:46.231044Z","dhcp_enabled":true,"id":"f77c2976-764a-4d2a-b001-4f42708d53c3","name":"tf-pn-distracted-bartik","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-26T19:00:46.231044Z","id":"e726046d-f1e6-4900-9bfd-1f5ad6109b37","subnet":"172.16.32.0/22","updated_at":"2023-10-26T19:00:46.231044Z"},{"created_at":"2023-10-26T19:00:46.231044Z","id":"1febe4ae-c49e-43cc-be0b-0f0d025b48b9","subnet":"fd46:78ab:30b8:b6b::/64","updated_at":"2023-10-26T19:00:46.231044Z"}],"tags":[],"updated_at":"2023-10-26T19:00:46.231044Z","vpc_id":"71f2a3bf-e5d1-4381-9c0f-bf656254108d"}' + headers: + Content-Length: + - "723" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:48 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 08c40a31-c878-4a81-8a8f-be6871d58d91 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f2ebb1de-3845-4ffb-8595-032b4ce49413 + method: GET + response: + body: '{"address":"172.16.32.5/22","created_at":"2023-10-26T19:00:48.050923Z","id":"f2ebb1de-3845-4ffb-8595-032b4ce49413","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"source":{"subnet_id":"e726046d-f1e6-4900-9bfd-1f5ad6109b37"},"tags":[],"updated_at":"2023-10-26T19:00:48.050923Z","zone":null}' + headers: + Content-Length: + - "354" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:48 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fb7f60f2-8612-4be0-ba27-1a253c5f5ea4 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/71f2a3bf-e5d1-4381-9c0f-bf656254108d + method: GET + response: + body: '{"created_at":"2023-10-26T19:00:45.458328Z","id":"71f2a3bf-e5d1-4381-9c0f-bf656254108d","is_default":false,"name":"my + vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","tags":[],"updated_at":"2023-10-26T19:00:45.458328Z"}' + headers: + Content-Length: + - "338" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:49 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fa9c0520-1845-4d86-ab1d-e802e78a42be + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f77c2976-764a-4d2a-b001-4f42708d53c3 + method: GET + response: + body: '{"created_at":"2023-10-26T19:00:46.231044Z","dhcp_enabled":true,"id":"f77c2976-764a-4d2a-b001-4f42708d53c3","name":"tf-pn-distracted-bartik","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-26T19:00:46.231044Z","id":"e726046d-f1e6-4900-9bfd-1f5ad6109b37","subnet":"172.16.32.0/22","updated_at":"2023-10-26T19:00:46.231044Z"},{"created_at":"2023-10-26T19:00:46.231044Z","id":"1febe4ae-c49e-43cc-be0b-0f0d025b48b9","subnet":"fd46:78ab:30b8:b6b::/64","updated_at":"2023-10-26T19:00:46.231044Z"}],"tags":[],"updated_at":"2023-10-26T19:00:46.231044Z","vpc_id":"71f2a3bf-e5d1-4381-9c0f-bf656254108d"}' + headers: + Content-Length: + - "723" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:49 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fb11496a-2f2b-47c8-9c8c-675e41cf3e44 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f2ebb1de-3845-4ffb-8595-032b4ce49413 + method: GET + response: + body: '{"address":"172.16.32.5/22","created_at":"2023-10-26T19:00:48.050923Z","id":"f2ebb1de-3845-4ffb-8595-032b4ce49413","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"source":{"subnet_id":"e726046d-f1e6-4900-9bfd-1f5ad6109b37"},"tags":[],"updated_at":"2023-10-26T19:00:48.050923Z","zone":null}' + headers: + Content-Length: + - "354" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:49 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 52201479-abc9-4e5d-993b-698b8a98796f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f77c2976-764a-4d2a-b001-4f42708d53c3 + method: GET + response: + body: '{"created_at":"2023-10-26T19:00:46.231044Z","dhcp_enabled":true,"id":"f77c2976-764a-4d2a-b001-4f42708d53c3","name":"tf-pn-distracted-bartik","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-26T19:00:46.231044Z","id":"e726046d-f1e6-4900-9bfd-1f5ad6109b37","subnet":"172.16.32.0/22","updated_at":"2023-10-26T19:00:46.231044Z"},{"created_at":"2023-10-26T19:00:46.231044Z","id":"1febe4ae-c49e-43cc-be0b-0f0d025b48b9","subnet":"fd46:78ab:30b8:b6b::/64","updated_at":"2023-10-26T19:00:46.231044Z"}],"tags":[],"updated_at":"2023-10-26T19:00:46.231044Z","vpc_id":"71f2a3bf-e5d1-4381-9c0f-bf656254108d"}' + headers: + Content-Length: + - "723" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:49 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 32d1857b-5f21-4f48-9d5a-54f9f674de2b + status: 200 OK + code: 200 + duration: "" +- request: + body: '{}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f2ebb1de-3845-4ffb-8595-032b4ce49413 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:49 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 354d8a61-1902-4b9c-a9c6-3e7c62c65e34 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f77c2976-764a-4d2a-b001-4f42708d53c3 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:50 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 778ce5a9-fbd9-42c0-8d53-d94354d2a3a3 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/71f2a3bf-e5d1-4381-9c0f-bf656254108d + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:50 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9a03f5d3-4fc1-4054-98a3-fde85b794880 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f2ebb1de-3845-4ffb-8595-032b4ce49413 + method: GET + response: + body: '{"message":"resource is not found","resource":"ip","resource_id":"f2ebb1de-3845-4ffb-8595-032b4ce49413","type":"not_found"}' + headers: + Content-Length: + - "123" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:50 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 49b3c60d-8718-4336-9110-3c185277b4fc + status: 404 Not Found + code: 404 + duration: "" diff --git a/scaleway/testdata/ipamip-with-standalone-address.cassette.yaml b/scaleway/testdata/ipamip-with-standalone-address.cassette.yaml new file mode 100644 index 0000000000..db1bd6132f --- /dev/null +++ b/scaleway/testdata/ipamip-with-standalone-address.cassette.yaml @@ -0,0 +1,536 @@ +--- +version: 1 +interactions: +- request: + body: '{"name":"my vpc","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST + response: + body: '{"created_at":"2023-10-26T19:00:18.405617Z","id":"6bd910ce-2f73-4da2-869c-30c182b2ed71","is_default":false,"name":"my + vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","tags":[],"updated_at":"2023-10-26T19:00:18.405617Z"}' + headers: + Content-Length: + - "338" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:19 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 153cae87-48a8-46ac-bae0-d0247617a7e4 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/6bd910ce-2f73-4da2-869c-30c182b2ed71 + method: GET + response: + body: '{"created_at":"2023-10-26T19:00:18.405617Z","id":"6bd910ce-2f73-4da2-869c-30c182b2ed71","is_default":false,"name":"my + vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","tags":[],"updated_at":"2023-10-26T19:00:18.405617Z"}' + headers: + Content-Length: + - "338" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:19 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b90cc3f9-6b16-4305-82d4-975e7ae17f2c + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"tf-pn-crazy-antonelli","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null,"subnets":["172.16.32.0/22"],"vpc_id":"6bd910ce-2f73-4da2-869c-30c182b2ed71"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + body: '{"created_at":"2023-10-26T19:00:19.286251Z","dhcp_enabled":true,"id":"0f3af6a7-c162-4aaa-b873-648e3c8a43aa","name":"tf-pn-crazy-antonelli","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-26T19:00:19.286251Z","id":"4c234232-f57c-4dee-85c6-afd677335800","subnet":"172.16.32.0/22","updated_at":"2023-10-26T19:00:19.286251Z"},{"created_at":"2023-10-26T19:00:19.286251Z","id":"2b24e65c-11ae-4c3c-abe5-1223ffce240c","subnet":"fd46:78ab:30b8:4328::/64","updated_at":"2023-10-26T19:00:19.286251Z"}],"tags":[],"updated_at":"2023-10-26T19:00:19.286251Z","vpc_id":"6bd910ce-2f73-4da2-869c-30c182b2ed71"}' + headers: + Content-Length: + - "722" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bd194501-af40-48cd-9e3b-170ff762a869 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0f3af6a7-c162-4aaa-b873-648e3c8a43aa + method: GET + response: + body: '{"created_at":"2023-10-26T19:00:19.286251Z","dhcp_enabled":true,"id":"0f3af6a7-c162-4aaa-b873-648e3c8a43aa","name":"tf-pn-crazy-antonelli","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-26T19:00:19.286251Z","id":"4c234232-f57c-4dee-85c6-afd677335800","subnet":"172.16.32.0/22","updated_at":"2023-10-26T19:00:19.286251Z"},{"created_at":"2023-10-26T19:00:19.286251Z","id":"2b24e65c-11ae-4c3c-abe5-1223ffce240c","subnet":"fd46:78ab:30b8:4328::/64","updated_at":"2023-10-26T19:00:19.286251Z"}],"tags":[],"updated_at":"2023-10-26T19:00:19.286251Z","vpc_id":"6bd910ce-2f73-4da2-869c-30c182b2ed71"}' + headers: + Content-Length: + - "722" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b554cc20-58ef-4717-8e47-9b495f23ca98 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"0f3af6a7-c162-4aaa-b873-648e3c8a43aa"},"is_ipv6":false,"address":"172.16.32.7","tags":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips + method: POST + response: + body: '{"address":"172.16.32.7/22","created_at":"2023-10-26T19:00:21.090791Z","id":"eb7e2099-49a1-4d85-ac5e-9bf414885d86","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"source":{"subnet_id":"4c234232-f57c-4dee-85c6-afd677335800"},"tags":[],"updated_at":"2023-10-26T19:00:21.090791Z","zone":null}' + headers: + Content-Length: + - "354" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a13e7e2f-2fa5-446b-ab8f-33a747e5ed97 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/eb7e2099-49a1-4d85-ac5e-9bf414885d86 + method: GET + response: + body: '{"address":"172.16.32.7/22","created_at":"2023-10-26T19:00:21.090791Z","id":"eb7e2099-49a1-4d85-ac5e-9bf414885d86","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"source":{"subnet_id":"4c234232-f57c-4dee-85c6-afd677335800"},"tags":[],"updated_at":"2023-10-26T19:00:21.090791Z","zone":null}' + headers: + Content-Length: + - "354" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2c7fbd5f-da46-4b16-8d14-8a2c2fe78e66 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0f3af6a7-c162-4aaa-b873-648e3c8a43aa + method: GET + response: + body: '{"created_at":"2023-10-26T19:00:19.286251Z","dhcp_enabled":true,"id":"0f3af6a7-c162-4aaa-b873-648e3c8a43aa","name":"tf-pn-crazy-antonelli","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-26T19:00:19.286251Z","id":"4c234232-f57c-4dee-85c6-afd677335800","subnet":"172.16.32.0/22","updated_at":"2023-10-26T19:00:19.286251Z"},{"created_at":"2023-10-26T19:00:19.286251Z","id":"2b24e65c-11ae-4c3c-abe5-1223ffce240c","subnet":"fd46:78ab:30b8:4328::/64","updated_at":"2023-10-26T19:00:19.286251Z"}],"tags":[],"updated_at":"2023-10-26T19:00:19.286251Z","vpc_id":"6bd910ce-2f73-4da2-869c-30c182b2ed71"}' + headers: + Content-Length: + - "722" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - de43bd9b-834e-4d2c-b2d1-7901c90f66a6 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/eb7e2099-49a1-4d85-ac5e-9bf414885d86 + method: GET + response: + body: '{"address":"172.16.32.7/22","created_at":"2023-10-26T19:00:21.090791Z","id":"eb7e2099-49a1-4d85-ac5e-9bf414885d86","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"source":{"subnet_id":"4c234232-f57c-4dee-85c6-afd677335800"},"tags":[],"updated_at":"2023-10-26T19:00:21.090791Z","zone":null}' + headers: + Content-Length: + - "354" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 23bb6711-1900-4c6c-ab05-7385fed2240a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/6bd910ce-2f73-4da2-869c-30c182b2ed71 + method: GET + response: + body: '{"created_at":"2023-10-26T19:00:18.405617Z","id":"6bd910ce-2f73-4da2-869c-30c182b2ed71","is_default":false,"name":"my + vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","tags":[],"updated_at":"2023-10-26T19:00:18.405617Z"}' + headers: + Content-Length: + - "338" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9106be42-1a46-4c58-94e2-89f851793eb8 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0f3af6a7-c162-4aaa-b873-648e3c8a43aa + method: GET + response: + body: '{"created_at":"2023-10-26T19:00:19.286251Z","dhcp_enabled":true,"id":"0f3af6a7-c162-4aaa-b873-648e3c8a43aa","name":"tf-pn-crazy-antonelli","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-26T19:00:19.286251Z","id":"4c234232-f57c-4dee-85c6-afd677335800","subnet":"172.16.32.0/22","updated_at":"2023-10-26T19:00:19.286251Z"},{"created_at":"2023-10-26T19:00:19.286251Z","id":"2b24e65c-11ae-4c3c-abe5-1223ffce240c","subnet":"fd46:78ab:30b8:4328::/64","updated_at":"2023-10-26T19:00:19.286251Z"}],"tags":[],"updated_at":"2023-10-26T19:00:19.286251Z","vpc_id":"6bd910ce-2f73-4da2-869c-30c182b2ed71"}' + headers: + Content-Length: + - "722" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:22 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - efc0d7a0-1699-4ea3-8603-0260d82cd26c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/eb7e2099-49a1-4d85-ac5e-9bf414885d86 + method: GET + response: + body: '{"address":"172.16.32.7/22","created_at":"2023-10-26T19:00:21.090791Z","id":"eb7e2099-49a1-4d85-ac5e-9bf414885d86","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"source":{"subnet_id":"4c234232-f57c-4dee-85c6-afd677335800"},"tags":[],"updated_at":"2023-10-26T19:00:21.090791Z","zone":null}' + headers: + Content-Length: + - "354" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:22 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3a426b96-6ef7-488c-b6d3-ce9ad6be4147 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0f3af6a7-c162-4aaa-b873-648e3c8a43aa + method: GET + response: + body: '{"created_at":"2023-10-26T19:00:19.286251Z","dhcp_enabled":true,"id":"0f3af6a7-c162-4aaa-b873-648e3c8a43aa","name":"tf-pn-crazy-antonelli","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-26T19:00:19.286251Z","id":"4c234232-f57c-4dee-85c6-afd677335800","subnet":"172.16.32.0/22","updated_at":"2023-10-26T19:00:19.286251Z"},{"created_at":"2023-10-26T19:00:19.286251Z","id":"2b24e65c-11ae-4c3c-abe5-1223ffce240c","subnet":"fd46:78ab:30b8:4328::/64","updated_at":"2023-10-26T19:00:19.286251Z"}],"tags":[],"updated_at":"2023-10-26T19:00:19.286251Z","vpc_id":"6bd910ce-2f73-4da2-869c-30c182b2ed71"}' + headers: + Content-Length: + - "722" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:22 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 29d8f8a4-0e65-4218-bd07-769550711683 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/eb7e2099-49a1-4d85-ac5e-9bf414885d86 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:22 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 56e34b1b-3e76-4912-b148-71fda764a980 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0f3af6a7-c162-4aaa-b873-648e3c8a43aa + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:23 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7c88f2eb-fcc9-4105-bb3a-8e623fed355f + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/6bd910ce-2f73-4da2-869c-30c182b2ed71 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:23 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 843c13bf-e94f-4e9f-908e-7fdee0710e4b + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/eb7e2099-49a1-4d85-ac5e-9bf414885d86 + method: GET + response: + body: '{"message":"resource is not found","resource":"ip","resource_id":"eb7e2099-49a1-4d85-ac5e-9bf414885d86","type":"not_found"}' + headers: + Content-Length: + - "123" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:00:23 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a32b27af-a23f-4823-92f9-d8d7297f6a47 + status: 404 Not Found + code: 404 + duration: "" diff --git a/scaleway/testdata/ipamip-with-tags.cassette.yaml b/scaleway/testdata/ipamip-with-tags.cassette.yaml new file mode 100644 index 0000000000..afca8e09df --- /dev/null +++ b/scaleway/testdata/ipamip-with-tags.cassette.yaml @@ -0,0 +1,936 @@ +--- +version: 1 +interactions: +- request: + body: '{"name":"my vpc","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST + response: + body: '{"created_at":"2023-10-26T19:02:10.016697Z","id":"ca381d94-7d2c-4eb4-a057-2f29b172d5a6","is_default":false,"name":"my + vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","tags":[],"updated_at":"2023-10-26T19:02:10.016697Z"}' + headers: + Content-Length: + - "338" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:10 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 63b1d617-cc51-43ea-8b23-b016923535ab + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ca381d94-7d2c-4eb4-a057-2f29b172d5a6 + method: GET + response: + body: '{"created_at":"2023-10-26T19:02:10.016697Z","id":"ca381d94-7d2c-4eb4-a057-2f29b172d5a6","is_default":false,"name":"my + vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","tags":[],"updated_at":"2023-10-26T19:02:10.016697Z"}' + headers: + Content-Length: + - "338" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:10 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 59a182f0-70b6-4a78-ab2b-7d48b03e54f8 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"tf-pn-dreamy-wilbur","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null,"subnets":["172.16.32.0/22"],"vpc_id":"ca381d94-7d2c-4eb4-a057-2f29b172d5a6"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + body: '{"created_at":"2023-10-26T19:02:10.193726Z","dhcp_enabled":true,"id":"bf8c0e33-53e3-41be-9572-9a5bd05cd724","name":"tf-pn-dreamy-wilbur","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-26T19:02:10.193726Z","id":"a4d9561b-7dce-44f3-94d6-70f8f91b19be","subnet":"172.16.32.0/22","updated_at":"2023-10-26T19:02:10.193726Z"},{"created_at":"2023-10-26T19:02:10.193726Z","id":"fcc509a4-fe2b-4b03-a790-d1674177fd46","subnet":"fd46:78ab:30b8:5245::/64","updated_at":"2023-10-26T19:02:10.193726Z"}],"tags":[],"updated_at":"2023-10-26T19:02:10.193726Z","vpc_id":"ca381d94-7d2c-4eb4-a057-2f29b172d5a6"}' + headers: + Content-Length: + - "720" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:12 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 45e9e325-f57d-4f4a-8692-a03563ab7c67 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bf8c0e33-53e3-41be-9572-9a5bd05cd724 + method: GET + response: + body: '{"created_at":"2023-10-26T19:02:10.193726Z","dhcp_enabled":true,"id":"bf8c0e33-53e3-41be-9572-9a5bd05cd724","name":"tf-pn-dreamy-wilbur","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-26T19:02:10.193726Z","id":"a4d9561b-7dce-44f3-94d6-70f8f91b19be","subnet":"172.16.32.0/22","updated_at":"2023-10-26T19:02:10.193726Z"},{"created_at":"2023-10-26T19:02:10.193726Z","id":"fcc509a4-fe2b-4b03-a790-d1674177fd46","subnet":"fd46:78ab:30b8:5245::/64","updated_at":"2023-10-26T19:02:10.193726Z"}],"tags":[],"updated_at":"2023-10-26T19:02:10.193726Z","vpc_id":"ca381d94-7d2c-4eb4-a057-2f29b172d5a6"}' + headers: + Content-Length: + - "720" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:12 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a06628d8-6dad-433e-826e-9c2054369873 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"bf8c0e33-53e3-41be-9572-9a5bd05cd724"},"is_ipv6":false,"address":null,"tags":["terraform-test","ipam"]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips + method: POST + response: + body: '{"address":"172.16.32.2/22","created_at":"2023-10-26T19:02:14.940347Z","id":"a5c4a240-2e76-4b24-b508-1df8d8538aed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"source":{"subnet_id":"a4d9561b-7dce-44f3-94d6-70f8f91b19be"},"tags":["terraform-test","ipam"],"updated_at":"2023-10-26T19:02:14.940347Z","zone":null}' + headers: + Content-Length: + - "378" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:15 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ee460b81-f8d6-4397-a245-cd75223197c7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/a5c4a240-2e76-4b24-b508-1df8d8538aed + method: GET + response: + body: '{"address":"172.16.32.2/22","created_at":"2023-10-26T19:02:14.940347Z","id":"a5c4a240-2e76-4b24-b508-1df8d8538aed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"source":{"subnet_id":"a4d9561b-7dce-44f3-94d6-70f8f91b19be"},"tags":["terraform-test","ipam"],"updated_at":"2023-10-26T19:02:14.940347Z","zone":null}' + headers: + Content-Length: + - "378" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:15 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fa8cac75-c512-40d8-b9f2-e8d092474b52 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bf8c0e33-53e3-41be-9572-9a5bd05cd724 + method: GET + response: + body: '{"created_at":"2023-10-26T19:02:10.193726Z","dhcp_enabled":true,"id":"bf8c0e33-53e3-41be-9572-9a5bd05cd724","name":"tf-pn-dreamy-wilbur","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-26T19:02:10.193726Z","id":"a4d9561b-7dce-44f3-94d6-70f8f91b19be","subnet":"172.16.32.0/22","updated_at":"2023-10-26T19:02:10.193726Z"},{"created_at":"2023-10-26T19:02:10.193726Z","id":"fcc509a4-fe2b-4b03-a790-d1674177fd46","subnet":"fd46:78ab:30b8:5245::/64","updated_at":"2023-10-26T19:02:10.193726Z"}],"tags":[],"updated_at":"2023-10-26T19:02:10.193726Z","vpc_id":"ca381d94-7d2c-4eb4-a057-2f29b172d5a6"}' + headers: + Content-Length: + - "720" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:15 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 29a86581-7013-4022-9804-a02fc0298351 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/a5c4a240-2e76-4b24-b508-1df8d8538aed + method: GET + response: + body: '{"address":"172.16.32.2/22","created_at":"2023-10-26T19:02:14.940347Z","id":"a5c4a240-2e76-4b24-b508-1df8d8538aed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"source":{"subnet_id":"a4d9561b-7dce-44f3-94d6-70f8f91b19be"},"tags":["terraform-test","ipam"],"updated_at":"2023-10-26T19:02:14.940347Z","zone":null}' + headers: + Content-Length: + - "378" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:15 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bf149e7b-b7a8-40a8-a4fe-ab15799e2699 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ca381d94-7d2c-4eb4-a057-2f29b172d5a6 + method: GET + response: + body: '{"created_at":"2023-10-26T19:02:10.016697Z","id":"ca381d94-7d2c-4eb4-a057-2f29b172d5a6","is_default":false,"name":"my + vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","tags":[],"updated_at":"2023-10-26T19:02:10.016697Z"}' + headers: + Content-Length: + - "338" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:15 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d338c872-da70-4c1f-9a28-34bd2491d35d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bf8c0e33-53e3-41be-9572-9a5bd05cd724 + method: GET + response: + body: '{"created_at":"2023-10-26T19:02:10.193726Z","dhcp_enabled":true,"id":"bf8c0e33-53e3-41be-9572-9a5bd05cd724","name":"tf-pn-dreamy-wilbur","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-26T19:02:10.193726Z","id":"a4d9561b-7dce-44f3-94d6-70f8f91b19be","subnet":"172.16.32.0/22","updated_at":"2023-10-26T19:02:10.193726Z"},{"created_at":"2023-10-26T19:02:10.193726Z","id":"fcc509a4-fe2b-4b03-a790-d1674177fd46","subnet":"fd46:78ab:30b8:5245::/64","updated_at":"2023-10-26T19:02:10.193726Z"}],"tags":[],"updated_at":"2023-10-26T19:02:10.193726Z","vpc_id":"ca381d94-7d2c-4eb4-a057-2f29b172d5a6"}' + headers: + Content-Length: + - "720" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:15 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 33a95d85-5a5d-4707-96be-9fb8bc044143 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/a5c4a240-2e76-4b24-b508-1df8d8538aed + method: GET + response: + body: '{"address":"172.16.32.2/22","created_at":"2023-10-26T19:02:14.940347Z","id":"a5c4a240-2e76-4b24-b508-1df8d8538aed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"source":{"subnet_id":"a4d9561b-7dce-44f3-94d6-70f8f91b19be"},"tags":["terraform-test","ipam"],"updated_at":"2023-10-26T19:02:14.940347Z","zone":null}' + headers: + Content-Length: + - "378" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:15 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 11eeae40-6541-46f6-84a0-d8c4c8dbf0d7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bf8c0e33-53e3-41be-9572-9a5bd05cd724 + method: GET + response: + body: '{"created_at":"2023-10-26T19:02:10.193726Z","dhcp_enabled":true,"id":"bf8c0e33-53e3-41be-9572-9a5bd05cd724","name":"tf-pn-dreamy-wilbur","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-26T19:02:10.193726Z","id":"a4d9561b-7dce-44f3-94d6-70f8f91b19be","subnet":"172.16.32.0/22","updated_at":"2023-10-26T19:02:10.193726Z"},{"created_at":"2023-10-26T19:02:10.193726Z","id":"fcc509a4-fe2b-4b03-a790-d1674177fd46","subnet":"fd46:78ab:30b8:5245::/64","updated_at":"2023-10-26T19:02:10.193726Z"}],"tags":[],"updated_at":"2023-10-26T19:02:10.193726Z","vpc_id":"ca381d94-7d2c-4eb4-a057-2f29b172d5a6"}' + headers: + Content-Length: + - "720" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:15 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 33632dda-e83a-4a14-88e1-d393854bdca3 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ca381d94-7d2c-4eb4-a057-2f29b172d5a6 + method: GET + response: + body: '{"created_at":"2023-10-26T19:02:10.016697Z","id":"ca381d94-7d2c-4eb4-a057-2f29b172d5a6","is_default":false,"name":"my + vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","tags":[],"updated_at":"2023-10-26T19:02:10.016697Z"}' + headers: + Content-Length: + - "338" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:16 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c034b63b-9e2d-476d-9943-c169b9eadb8d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bf8c0e33-53e3-41be-9572-9a5bd05cd724 + method: GET + response: + body: '{"created_at":"2023-10-26T19:02:10.193726Z","dhcp_enabled":true,"id":"bf8c0e33-53e3-41be-9572-9a5bd05cd724","name":"tf-pn-dreamy-wilbur","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-26T19:02:10.193726Z","id":"a4d9561b-7dce-44f3-94d6-70f8f91b19be","subnet":"172.16.32.0/22","updated_at":"2023-10-26T19:02:10.193726Z"},{"created_at":"2023-10-26T19:02:10.193726Z","id":"fcc509a4-fe2b-4b03-a790-d1674177fd46","subnet":"fd46:78ab:30b8:5245::/64","updated_at":"2023-10-26T19:02:10.193726Z"}],"tags":[],"updated_at":"2023-10-26T19:02:10.193726Z","vpc_id":"ca381d94-7d2c-4eb4-a057-2f29b172d5a6"}' + headers: + Content-Length: + - "720" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:16 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 230de42e-6198-42d4-aab7-bf16e62fa669 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/a5c4a240-2e76-4b24-b508-1df8d8538aed + method: GET + response: + body: '{"address":"172.16.32.2/22","created_at":"2023-10-26T19:02:14.940347Z","id":"a5c4a240-2e76-4b24-b508-1df8d8538aed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"source":{"subnet_id":"a4d9561b-7dce-44f3-94d6-70f8f91b19be"},"tags":["terraform-test","ipam"],"updated_at":"2023-10-26T19:02:14.940347Z","zone":null}' + headers: + Content-Length: + - "378" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:16 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3793c426-5aae-4120-9477-7c40b705ccb3 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bf8c0e33-53e3-41be-9572-9a5bd05cd724 + method: GET + response: + body: '{"created_at":"2023-10-26T19:02:10.193726Z","dhcp_enabled":true,"id":"bf8c0e33-53e3-41be-9572-9a5bd05cd724","name":"tf-pn-dreamy-wilbur","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-26T19:02:10.193726Z","id":"a4d9561b-7dce-44f3-94d6-70f8f91b19be","subnet":"172.16.32.0/22","updated_at":"2023-10-26T19:02:10.193726Z"},{"created_at":"2023-10-26T19:02:10.193726Z","id":"fcc509a4-fe2b-4b03-a790-d1674177fd46","subnet":"fd46:78ab:30b8:5245::/64","updated_at":"2023-10-26T19:02:10.193726Z"}],"tags":[],"updated_at":"2023-10-26T19:02:10.193726Z","vpc_id":"ca381d94-7d2c-4eb4-a057-2f29b172d5a6"}' + headers: + Content-Length: + - "720" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:16 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 274c7a07-0d99-421b-aafb-0ec178d2d423 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"tags":["terraform-test","ipam","updated"]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/a5c4a240-2e76-4b24-b508-1df8d8538aed + method: PATCH + response: + body: '{"address":"172.16.32.2/22","created_at":"2023-10-26T19:02:14.940347Z","id":"a5c4a240-2e76-4b24-b508-1df8d8538aed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"source":{"subnet_id":"a4d9561b-7dce-44f3-94d6-70f8f91b19be"},"tags":["terraform-test","ipam","updated"],"updated_at":"2023-10-26T19:02:16.996834Z","zone":null}' + headers: + Content-Length: + - "389" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:17 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d402da5a-b3d2-45e2-a3bd-8736f70e9111 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/a5c4a240-2e76-4b24-b508-1df8d8538aed + method: GET + response: + body: '{"address":"172.16.32.2/22","created_at":"2023-10-26T19:02:14.940347Z","id":"a5c4a240-2e76-4b24-b508-1df8d8538aed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"source":{"subnet_id":"a4d9561b-7dce-44f3-94d6-70f8f91b19be"},"tags":["terraform-test","ipam","updated"],"updated_at":"2023-10-26T19:02:16.996834Z","zone":null}' + headers: + Content-Length: + - "389" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:17 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aa85bf86-3e26-441a-be98-dcfc4186ccdf + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bf8c0e33-53e3-41be-9572-9a5bd05cd724 + method: GET + response: + body: '{"created_at":"2023-10-26T19:02:10.193726Z","dhcp_enabled":true,"id":"bf8c0e33-53e3-41be-9572-9a5bd05cd724","name":"tf-pn-dreamy-wilbur","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-26T19:02:10.193726Z","id":"a4d9561b-7dce-44f3-94d6-70f8f91b19be","subnet":"172.16.32.0/22","updated_at":"2023-10-26T19:02:10.193726Z"},{"created_at":"2023-10-26T19:02:10.193726Z","id":"fcc509a4-fe2b-4b03-a790-d1674177fd46","subnet":"fd46:78ab:30b8:5245::/64","updated_at":"2023-10-26T19:02:10.193726Z"}],"tags":[],"updated_at":"2023-10-26T19:02:10.193726Z","vpc_id":"ca381d94-7d2c-4eb4-a057-2f29b172d5a6"}' + headers: + Content-Length: + - "720" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:17 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4bb6a66d-d909-4644-ad1c-e9c6c48b4a6b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/a5c4a240-2e76-4b24-b508-1df8d8538aed + method: GET + response: + body: '{"address":"172.16.32.2/22","created_at":"2023-10-26T19:02:14.940347Z","id":"a5c4a240-2e76-4b24-b508-1df8d8538aed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"source":{"subnet_id":"a4d9561b-7dce-44f3-94d6-70f8f91b19be"},"tags":["terraform-test","ipam","updated"],"updated_at":"2023-10-26T19:02:16.996834Z","zone":null}' + headers: + Content-Length: + - "389" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:18 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 69e7f1b8-c151-4217-a92b-0a0bfde3f55f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ca381d94-7d2c-4eb4-a057-2f29b172d5a6 + method: GET + response: + body: '{"created_at":"2023-10-26T19:02:10.016697Z","id":"ca381d94-7d2c-4eb4-a057-2f29b172d5a6","is_default":false,"name":"my + vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","tags":[],"updated_at":"2023-10-26T19:02:10.016697Z"}' + headers: + Content-Length: + - "338" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:18 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d422a363-8b11-4f25-ac29-95e9536b84d8 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bf8c0e33-53e3-41be-9572-9a5bd05cd724 + method: GET + response: + body: '{"created_at":"2023-10-26T19:02:10.193726Z","dhcp_enabled":true,"id":"bf8c0e33-53e3-41be-9572-9a5bd05cd724","name":"tf-pn-dreamy-wilbur","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-26T19:02:10.193726Z","id":"a4d9561b-7dce-44f3-94d6-70f8f91b19be","subnet":"172.16.32.0/22","updated_at":"2023-10-26T19:02:10.193726Z"},{"created_at":"2023-10-26T19:02:10.193726Z","id":"fcc509a4-fe2b-4b03-a790-d1674177fd46","subnet":"fd46:78ab:30b8:5245::/64","updated_at":"2023-10-26T19:02:10.193726Z"}],"tags":[],"updated_at":"2023-10-26T19:02:10.193726Z","vpc_id":"ca381d94-7d2c-4eb4-a057-2f29b172d5a6"}' + headers: + Content-Length: + - "720" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:18 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8499558e-7c0d-4a69-971f-ade46764656f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/a5c4a240-2e76-4b24-b508-1df8d8538aed + method: GET + response: + body: '{"address":"172.16.32.2/22","created_at":"2023-10-26T19:02:14.940347Z","id":"a5c4a240-2e76-4b24-b508-1df8d8538aed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"source":{"subnet_id":"a4d9561b-7dce-44f3-94d6-70f8f91b19be"},"tags":["terraform-test","ipam","updated"],"updated_at":"2023-10-26T19:02:16.996834Z","zone":null}' + headers: + Content-Length: + - "389" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:18 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 91bd1cd5-fb45-4041-b4e9-28082580befa + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bf8c0e33-53e3-41be-9572-9a5bd05cd724 + method: GET + response: + body: '{"created_at":"2023-10-26T19:02:10.193726Z","dhcp_enabled":true,"id":"bf8c0e33-53e3-41be-9572-9a5bd05cd724","name":"tf-pn-dreamy-wilbur","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-26T19:02:10.193726Z","id":"a4d9561b-7dce-44f3-94d6-70f8f91b19be","subnet":"172.16.32.0/22","updated_at":"2023-10-26T19:02:10.193726Z"},{"created_at":"2023-10-26T19:02:10.193726Z","id":"fcc509a4-fe2b-4b03-a790-d1674177fd46","subnet":"fd46:78ab:30b8:5245::/64","updated_at":"2023-10-26T19:02:10.193726Z"}],"tags":[],"updated_at":"2023-10-26T19:02:10.193726Z","vpc_id":"ca381d94-7d2c-4eb4-a057-2f29b172d5a6"}' + headers: + Content-Length: + - "720" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:18 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d335da89-9a18-47d4-8c59-cde21937eab4 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/a5c4a240-2e76-4b24-b508-1df8d8538aed + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:19 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ff8ef23d-b7b9-4a0d-a6b3-955fb44809f9 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bf8c0e33-53e3-41be-9572-9a5bd05cd724 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 438fb404-89f4-4d2a-aed8-795b2e53ebf3 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ca381d94-7d2c-4eb4-a057-2f29b172d5a6 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 440da796-0071-4fe2-a2fd-9cbb6ddaf730 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/a5c4a240-2e76-4b24-b508-1df8d8538aed + method: GET + response: + body: '{"message":"resource is not found","resource":"ip","resource_id":"a5c4a240-2e76-4b24-b508-1df8d8538aed","type":"not_found"}' + headers: + Content-Length: + - "123" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 26 Oct 2023 19:02:20 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 43e73093-f398-45c8-914e-2725fa13f2d9 + status: 404 Not Found + code: 404 + duration: "" From b5c94f548e77a970c78abd251cbfce261e08cfc5 Mon Sep 17 00:00:00 2001 From: Yacine FODIL Date: Fri, 27 Oct 2023 11:07:50 +0200 Subject: [PATCH 2/5] lint & update cassettes --- scaleway/helpers_ipam.go | 10 +- scaleway/resource_ipam_ip.go | 22 +- scaleway/resource_ipam_ip_test.go | 9 +- ...teway-dhcp-reservation-basic.cassette.yaml | 1424 +++++----- ...eway-dhcp-reservation-static.cassette.yaml | 1534 +++++----- ...tance-server-private-network.cassette.yaml | 2491 +++++++++-------- ...vate-networks-on-dhcp-config.cassette.yaml | 1424 +++++----- ...lic-gateway-dhcp-entry-basic.cassette.yaml | 1523 +++++----- 8 files changed, 4321 insertions(+), 4116 deletions(-) diff --git a/scaleway/helpers_ipam.go b/scaleway/helpers_ipam.go index 2521114fe6..a92d48189f 100644 --- a/scaleway/helpers_ipam.go +++ b/scaleway/helpers_ipam.go @@ -102,15 +102,15 @@ func checkSubnetIDInFlattenedSubnets(subnetID string, flattenedSubnets interface return false } -func diffSuppressFuncStandaloneIPandCIDR(k, old, new string, _ *schema.ResourceData) bool { - oldIP, oldNet, errOld := net.ParseCIDR(old) +func diffSuppressFuncStandaloneIPandCIDR(_, oldValue, newValue string, _ *schema.ResourceData) bool { + oldIP, oldNet, errOld := net.ParseCIDR(oldValue) if errOld != nil { - oldIP = net.ParseIP(old) + oldIP = net.ParseIP(oldValue) } - newIP, newNet, errNew := net.ParseCIDR(new) + newIP, newNet, errNew := net.ParseCIDR(newValue) if errNew != nil { - newIP = net.ParseIP(new) + newIP = net.ParseIP(newValue) } if oldIP != nil && newIP != nil && oldIP.Equal(newIP) { diff --git a/scaleway/resource_ipam_ip.go b/scaleway/resource_ipam_ip.go index 9d5815590a..ce0093dfbb 100644 --- a/scaleway/resource_ipam_ip.go +++ b/scaleway/resource_ipam_ip.go @@ -27,6 +27,7 @@ func resourceScalewayIPAMIP() *schema.Resource { Type: schema.TypeString, Optional: true, Computed: true, + ForceNew: true, Description: "Request a specific IP in the requested source pool", ValidateFunc: validateStandaloneIPorCIDR(), DiffSuppressFunc: diffSuppressFuncStandaloneIPandCIDR, @@ -122,7 +123,7 @@ func resourceScalewayIPAMIP() *schema.Resource { } func resourceScalewayIPAMIPCreate(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics { - ipamApi, region, err := ipamAPIWithRegion(d, meta) + ipamAPI, region, err := ipamAPIWithRegion(d, meta) if err != nil { return diag.FromErr(err) } @@ -151,7 +152,7 @@ func resourceScalewayIPAMIPCreate(ctx context.Context, d *schema.ResourceData, m req.Source = expandIPSource(source) } - res, err := ipamApi.BookIP(req, scw.WithContext(ctx)) + res, err := ipamAPI.BookIP(req, scw.WithContext(ctx)) if err != nil { return diag.FromErr(err) } @@ -162,7 +163,7 @@ func resourceScalewayIPAMIPCreate(ctx context.Context, d *schema.ResourceData, m } func resourceScalewayIPAMIPRead(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics { - ipamApi, region, ID, err := ipamAPIWithRegionAndID(meta, d.Id()) + ipamAPI, region, ID, err := ipamAPIWithRegionAndID(meta, d.Id()) if err != nil { return diag.FromErr(err) } @@ -171,7 +172,7 @@ func resourceScalewayIPAMIPRead(ctx context.Context, d *schema.ResourceData, met return diag.FromErr(err) } - res, err := ipamApi.GetIP(&ipam.GetIPRequest{ + res, err := ipamAPI.GetIP(&ipam.GetIPRequest{ Region: region, IPID: ID, }, scw.WithContext(ctx)) @@ -196,21 +197,18 @@ func resourceScalewayIPAMIPRead(ctx context.Context, d *schema.ResourceData, met } ipv4Subnets, ipv6Subnets := flattenAndSortSubnets(pn.Subnets) - found := false + var found bool - // Check if the subnet ID is present in the flattened subnets based on the "is_ipv6" field. if d.Get("is_ipv6").(bool) { found = checkSubnetIDInFlattenedSubnets(*res.Source.SubnetID, ipv6Subnets) } else { found = checkSubnetIDInFlattenedSubnets(*res.Source.SubnetID, ipv4Subnets) } - // If found, set the private network ID in the resource state if found { privateNetworkID = pn.ID } } - } address, err := flattenIPNet(res.Address) @@ -236,12 +234,12 @@ func resourceScalewayIPAMIPRead(ctx context.Context, d *schema.ResourceData, met } func resourceScalewayIPAMIPUpdate(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics { - ipamApi, region, ID, err := ipamAPIWithRegionAndID(meta, d.Id()) + ipamAPI, region, ID, err := ipamAPIWithRegionAndID(meta, d.Id()) if err != nil { return diag.FromErr(err) } - _, err = ipamApi.UpdateIP(&ipam.UpdateIPRequest{ + _, err = ipamAPI.UpdateIP(&ipam.UpdateIPRequest{ IPID: ID, Region: region, Tags: expandUpdatedStringsPtr(d.Get("tags")), @@ -254,12 +252,12 @@ func resourceScalewayIPAMIPUpdate(ctx context.Context, d *schema.ResourceData, m } func resourceScalewayIPAMIPDelete(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics { - ipamApi, region, ID, err := ipamAPIWithRegionAndID(meta, d.Id()) + ipamAPI, region, ID, err := ipamAPIWithRegionAndID(meta, d.Id()) if err != nil { return diag.FromErr(err) } - err = ipamApi.ReleaseIP(&ipam.ReleaseIPRequest{ + err = ipamAPI.ReleaseIP(&ipam.ReleaseIPRequest{ Region: region, IPID: ID, }, scw.WithContext(ctx)) diff --git a/scaleway/resource_ipam_ip_test.go b/scaleway/resource_ipam_ip_test.go index 72b3013b62..230d761330 100644 --- a/scaleway/resource_ipam_ip_test.go +++ b/scaleway/resource_ipam_ip_test.go @@ -121,6 +121,7 @@ func TestAccScalewayIPAMIP_WithStandaloneAddress(t *testing.T) { }, }) } + func TestAccScalewayIPAMIP_WithCIDRAddress(t *testing.T) { tt := NewTestTools(t) defer tt.Cleanup() @@ -232,12 +233,12 @@ func testAccCheckScalewayIPAMIPExists(tt *TestTools, n string) resource.TestChec return fmt.Errorf("resource not found: %s", n) } - ipamApi, region, ID, err := ipamAPIWithRegionAndID(tt.Meta, rs.Primary.ID) + ipamAPI, region, ID, err := ipamAPIWithRegionAndID(tt.Meta, rs.Primary.ID) if err != nil { return err } - _, err = ipamApi.GetIP(&ipam.GetIPRequest{ + _, err = ipamAPI.GetIP(&ipam.GetIPRequest{ IPID: ID, Region: region, }) @@ -257,12 +258,12 @@ func testAccCheckScalewayIPAMIPDestroy(tt *TestTools) resource.TestCheckFunc { continue } - ipamApi, region, ID, err := ipamAPIWithRegionAndID(tt.Meta, rs.Primary.ID) + ipamAPI, region, ID, err := ipamAPIWithRegionAndID(tt.Meta, rs.Primary.ID) if err != nil { return err } - _, err = ipamApi.GetIP(&ipam.GetIPRequest{ + _, err = ipamAPI.GetIP(&ipam.GetIPRequest{ IPID: ID, Region: region, }) diff --git a/scaleway/testdata/data-source-vpc-public-gateway-dhcp-reservation-basic.cassette.yaml b/scaleway/testdata/data-source-vpc-public-gateway-dhcp-reservation-basic.cassette.yaml index e3bb8481ab..2e29958045 100644 --- a/scaleway/testdata/data-source-vpc-public-gateway-dhcp-reservation-basic.cassette.yaml +++ b/scaleway/testdata/data-source-vpc-public-gateway-dhcp-reservation-basic.cassette.yaml @@ -2,18 +2,18 @@ version: 1 interactions: - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"192.168.1.0/24","address":null,"pool_low":null,"pool_high":null,"enable_dynamic":null,"valid_lifetime":null,"renew_timer":null,"rebind_timer":null,"push_default_route":null,"push_dns_server":null,"dns_servers_override":null,"dns_search":null,"dns_local_name":null}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"192.168.1.0/24","address":null,"pool_low":null,"pool_high":null,"enable_dynamic":null,"valid_lifetime":null,"renew_timer":null,"rebind_timer":null,"push_default_route":null,"push_dns_server":null,"dns_servers_override":null,"dns_search":null,"dns_local_name":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps method: POST response: - body: '{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"}' headers: Content-Length: - "586" @@ -22,7 +22,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:22 GMT + - Fri, 27 Oct 2023 08:59:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77014efb-7c0f-49fb-9096-0f3afb81f540 + - 2b6413ea-2d16-43c8-be7c-d5c3c37bc0fc status: 200 OK code: 200 duration: "" @@ -41,12 +41,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/ed17287e-2e94-4739-a493-5cfc6f7ad4dd + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/70d2fd66-fbb2-4df0-9e0e-ddbe1296f683 method: GET response: - body: '{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"}' headers: Content-Length: - "586" @@ -55,7 +55,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:22 GMT + - Fri, 27 Oct 2023 08:59:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,32 +65,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a1386a4-3c20-47cf-95eb-3f5b3650507b + - 20350060-a8bc-4981-9edd-eeec7e35faaa status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":null}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips method: POST response: - body: '{"address":"163.172.151.40","created_at":"2023-10-20T14:14:22.812784Z","gateway_id":null,"id":"a5c6f7e8-7d69-42f2-8f77-e92d394818dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"40-151-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:14:22.812784Z","zone":"fr-par-1"}' + body: '{"address":"51.15.138.206","created_at":"2023-10-27T08:59:42.907036Z","gateway_id":null,"id":"e07bc539-52e1-4b82-9c89-5cebbcc0753b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"206-138-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:59:42.907036Z","zone":"fr-par-1"}' headers: Content-Length: - - "369" + - "367" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:22 GMT + - Fri, 27 Oct 2023 08:59:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,7 +100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80d42bf0-df55-4015-88bf-737cfba2cb33 + - a2942bda-6f66-43ef-906d-0aff3adbd154 status: 200 OK code: 200 duration: "" @@ -109,21 +109,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/a5c6f7e8-7d69-42f2-8f77-e92d394818dd + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/e07bc539-52e1-4b82-9c89-5cebbcc0753b method: GET response: - body: '{"address":"163.172.151.40","created_at":"2023-10-20T14:14:22.812784Z","gateway_id":null,"id":"a5c6f7e8-7d69-42f2-8f77-e92d394818dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"40-151-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:14:22.812784Z","zone":"fr-par-1"}' + body: '{"address":"51.15.138.206","created_at":"2023-10-27T08:59:42.907036Z","gateway_id":null,"id":"e07bc539-52e1-4b82-9c89-5cebbcc0753b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"206-138-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:59:42.907036Z","zone":"fr-par-1"}' headers: Content-Length: - - "369" + - "367" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:23 GMT + - Fri, 27 Oct 2023 08:59:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,32 +133,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd30e6fd-a1de-45a4-9e1d-c61548cd6556 + - 74fb51eb-e7ab-4e90-8525-a71f6c6d90cc status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"foobar","tags":null,"type":"VPC-GW-S","upstream_dns_servers":null,"ip_id":"a5c6f7e8-7d69-42f2-8f77-e92d394818dd","enable_smtp":false,"enable_bastion":false,"bastion_port":null}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"foobar","tags":null,"type":"VPC-GW-S","upstream_dns_servers":null,"ip_id":"e07bc539-52e1-4b82-9c89-5cebbcc0753b","enable_smtp":false,"enable_bastion":false,"bastion_port":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways method: POST response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:14:23.136875Z","gateway_networks":[],"id":"1a2e3870-ac79-4336-a5c8-85d537c55814","ip":{"address":"163.172.151.40","created_at":"2023-10-20T14:14:22.812784Z","gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"a5c6f7e8-7d69-42f2-8f77-e92d394818dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"40-151-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:14:22.812784Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:14:23.136875Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:59:43.078930Z","gateway_networks":[],"id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","ip":{"address":"51.15.138.206","created_at":"2023-10-27T08:59:42.907036Z","gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"e07bc539-52e1-4b82-9c89-5cebbcc0753b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"206-138-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:59:42.907036Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:59:43.078930Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' headers: Content-Length: - - "971" + - "969" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:23 GMT + - Fri, 27 Oct 2023 08:59:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -168,7 +168,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db8ff747-a7f2-487e-957d-4b09f052d6d8 + - acb492ac-6b13-4b2b-81dc-39574faa86d9 status: 200 OK code: 200 duration: "" @@ -177,21 +177,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/1a2e3870-ac79-4336-a5c8-85d537c55814 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/e65b0b4a-e65c-44d9-9170-0ae6ac9338f2 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:14:23.136875Z","gateway_networks":[],"id":"1a2e3870-ac79-4336-a5c8-85d537c55814","ip":{"address":"163.172.151.40","created_at":"2023-10-20T14:14:22.812784Z","gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"a5c6f7e8-7d69-42f2-8f77-e92d394818dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"40-151-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:14:22.812784Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:14:23.176334Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:59:43.078930Z","gateway_networks":[],"id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","ip":{"address":"51.15.138.206","created_at":"2023-10-27T08:59:42.907036Z","gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"e07bc539-52e1-4b82-9c89-5cebbcc0753b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"206-138-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:59:42.907036Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:59:43.078930Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' headers: Content-Length: - - "974" + - "969" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:23 GMT + - Fri, 27 Oct 2023 08:59:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -201,32 +201,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3dab94dc-0aaa-43e0-bb16-c484d5be4f52 + - 134a6014-fdd2-419e-8fc6-1a923d0e18cc status: 200 OK code: 200 duration: "" - request: - body: '{"name":"TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Basic","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":null,"subnets":null,"vpc_id":null}' + body: '{"name":"TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Basic","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null,"subnets":null,"vpc_id":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"created_at":"2023-10-20T14:14:22.245911Z","dhcp_enabled":true,"id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","name":"TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T14:14:22.245911Z","id":"c0296ded-0a66-4433-a721-f673df956b04","subnet":"172.16.120.0/22","updated_at":"2023-10-20T14:14:22.245911Z"},{"created_at":"2023-10-20T14:14:22.245911Z","id":"ebebdf6b-cab1-4e79-a6e5-e269e008ab01","subnet":"fd5f:519c:6d46:bb1a::/64","updated_at":"2023-10-20T14:14:22.245911Z"}],"tags":[],"updated_at":"2023-10-20T14:14:22.245911Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2023-10-27T08:59:42.335705Z","dhcp_enabled":true,"id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","name":"TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T08:59:42.335705Z","id":"6d73c456-fa7c-4640-8932-d74994d73fd7","subnet":"172.16.72.0/22","updated_at":"2023-10-27T08:59:42.335705Z"},{"created_at":"2023-10-27T08:59:42.335705Z","id":"9388d2f4-015d-49eb-a164-3808575ecc31","subnet":"fd46:78ab:30b8:39e5::/64","updated_at":"2023-10-27T08:59:42.335705Z"}],"tags":[],"updated_at":"2023-10-27T08:59:42.335705Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "764" + - "763" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:23 GMT + - Fri, 27 Oct 2023 08:59:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -236,7 +236,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bccf9ef0-6498-4957-beeb-53bd63d93433 + - ea774ffc-23f9-4f4f-ab80-18e8a2a537e7 status: 200 OK code: 200 duration: "" @@ -245,21 +245,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/17818dee-ef3c-4c6a-b5a4-d701ee98d1e5 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ac96a017-00ac-4d5f-9e03-00d3e4ca3113 method: GET response: - body: '{"created_at":"2023-10-20T14:14:22.245911Z","dhcp_enabled":true,"id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","name":"TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T14:14:22.245911Z","id":"c0296ded-0a66-4433-a721-f673df956b04","subnet":"172.16.120.0/22","updated_at":"2023-10-20T14:14:22.245911Z"},{"created_at":"2023-10-20T14:14:22.245911Z","id":"ebebdf6b-cab1-4e79-a6e5-e269e008ab01","subnet":"fd5f:519c:6d46:bb1a::/64","updated_at":"2023-10-20T14:14:22.245911Z"}],"tags":[],"updated_at":"2023-10-20T14:14:22.245911Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2023-10-27T08:59:42.335705Z","dhcp_enabled":true,"id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","name":"TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T08:59:42.335705Z","id":"6d73c456-fa7c-4640-8932-d74994d73fd7","subnet":"172.16.72.0/22","updated_at":"2023-10-27T08:59:42.335705Z"},{"created_at":"2023-10-27T08:59:42.335705Z","id":"9388d2f4-015d-49eb-a164-3808575ecc31","subnet":"fd46:78ab:30b8:39e5::/64","updated_at":"2023-10-27T08:59:42.335705Z"}],"tags":[],"updated_at":"2023-10-27T08:59:42.335705Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "764" + - "763" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:23 GMT + - Fri, 27 Oct 2023 08:59:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -269,7 +269,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4d258ee-8db8-4db8-8dc7-7e921bffcf73 + - d1e00f90-ebe7-45b4-9d67-38318de55971 status: 200 OK code: 200 duration: "" @@ -278,7 +278,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=created_at_asc&type=instance_local&zone=fr-par-1 method: GET @@ -292,7 +292,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:23 GMT + - Fri, 27 Oct 2023 08:59:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -302,7 +302,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bdc5c270-eabf-4d0b-b72a-2b9bd0a06f47 + - 8c5c62be-0826-410f-a7e4-b4a5db814576 status: 200 OK code: 200 duration: "" @@ -311,7 +311,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET @@ -325,7 +325,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:23 GMT + - Fri, 27 Oct 2023 08:59:43 GMT Link: - ; rel="next",; rel="last" @@ -338,7 +338,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 058b72f5-a1db-4311-89c5-f4610c448a82 + - 4162a1d8-3e19-476a-b27a-4214040a8cf1 X-Total-Count: - "56" status: 200 OK @@ -349,7 +349,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET @@ -363,7 +363,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:23 GMT + - Fri, 27 Oct 2023 08:59:43 GMT Link: - ; rel="first",; rel="previous",; rel="last" @@ -376,42 +376,42 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46094e57-4259-46de-91b7-c454524686bf + - b20904ad-e1f3-4fc9-a8a0-ee465b713adc X-Total-Count: - "56" status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-srv-friendly-jennings","dynamic_ip_required":false,"routed_ip_enabled":false,"commercial_type":"DEV1-S","image":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-srv-bold-driscoll","dynamic_ip_required":false,"routed_ip_enabled":false,"commercial_type":"DEV1-S","image":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:14:24.221137+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-friendly-jennings","id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:59:43.820693+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-driscoll","id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:b1:41","maintenances":[],"modification_date":"2023-10-20T14:14:24.221137+00:00","name":"tf-srv-friendly-jennings","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:14:24.221137+00:00","export_uri":null,"id":"57808eba-a9bf-4a38-b786-ac2cb062e5d6","modification_date":"2023-10-20T14:14:24.221137+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","name":"tf-srv-friendly-jennings"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:bc:d7","maintenances":[],"modification_date":"2023-10-27T08:59:43.820693+00:00","name":"tf-srv-bold-driscoll","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:59:43.820693+00:00","export_uri":null,"id":"83b8c92a-5d52-4f7f-9601-2c1bdde8eb94","modification_date":"2023-10-27T08:59:43.820693+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","name":"tf-srv-bold-driscoll"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2654" + - "2642" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:24 GMT + - Fri, 27 Oct 2023 08:59:44 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -421,7 +421,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6d1fa21-9d8a-49a2-8b5b-c3aa6a4b015c + - cce2a31d-776e-429e-933f-0e0f9f800d1b status: 201 Created code: 201 duration: "" @@ -430,27 +430,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7 method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:14:24.221137+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-friendly-jennings","id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:59:43.820693+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-driscoll","id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:b1:41","maintenances":[],"modification_date":"2023-10-20T14:14:24.221137+00:00","name":"tf-srv-friendly-jennings","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:14:24.221137+00:00","export_uri":null,"id":"57808eba-a9bf-4a38-b786-ac2cb062e5d6","modification_date":"2023-10-20T14:14:24.221137+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","name":"tf-srv-friendly-jennings"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:bc:d7","maintenances":[],"modification_date":"2023-10-27T08:59:43.820693+00:00","name":"tf-srv-bold-driscoll","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:59:43.820693+00:00","export_uri":null,"id":"83b8c92a-5d52-4f7f-9601-2c1bdde8eb94","modification_date":"2023-10-27T08:59:43.820693+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","name":"tf-srv-bold-driscoll"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2654" + - "2642" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:24 GMT + - Fri, 27 Oct 2023 08:59:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -460,7 +460,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - faa792f6-0e25-4c60-b4cf-b213acd7fd91 + - 0bf0aed7-f54c-4fac-9a19-6f74bf261874 status: 200 OK code: 200 duration: "" @@ -469,27 +469,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7 method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:14:24.221137+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-friendly-jennings","id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:59:43.820693+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-driscoll","id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:b1:41","maintenances":[],"modification_date":"2023-10-20T14:14:24.221137+00:00","name":"tf-srv-friendly-jennings","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:14:24.221137+00:00","export_uri":null,"id":"57808eba-a9bf-4a38-b786-ac2cb062e5d6","modification_date":"2023-10-20T14:14:24.221137+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","name":"tf-srv-friendly-jennings"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:bc:d7","maintenances":[],"modification_date":"2023-10-27T08:59:43.820693+00:00","name":"tf-srv-bold-driscoll","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:59:43.820693+00:00","export_uri":null,"id":"83b8c92a-5d52-4f7f-9601-2c1bdde8eb94","modification_date":"2023-10-27T08:59:43.820693+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","name":"tf-srv-bold-driscoll"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2654" + - "2642" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:24 GMT + - Fri, 27 Oct 2023 08:59:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -499,7 +499,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2c85ff2-f35e-4b6d-9410-5e01dea5b198 + - c491e5b6-a4ac-48a5-bb58-c6a4c3703441 status: 200 OK code: 200 duration: "" @@ -510,12 +510,12 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/action method: POST response: - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79/action","href_result":"/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79","id":"c21f41aa-3f87-4e24-a14f-0cb69a5f5ea0","started_at":"2023-10-20T14:14:25.357848+00:00","status":"pending","terminated_at":null}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/action","href_result":"/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","id":"a2d1b7d8-40b2-4534-a769-a0169f2d7394","started_at":"2023-10-27T08:59:44.704698+00:00","status":"pending","terminated_at":null}}' headers: Content-Length: - "322" @@ -524,9 +524,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:25 GMT + - Fri, 27 Oct 2023 08:59:44 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c21f41aa-3f87-4e24-a14f-0cb69a5f5ea0 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a2d1b7d8-40b2-4534-a769-a0169f2d7394 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -536,7 +536,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf3bca6d-1b3d-451f-b257-aa62e982e778 + - 9177db20-50d5-4a1e-978c-6e74defc6664 status: 202 Accepted code: 202 duration: "" @@ -545,27 +545,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:14:24.221137+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-friendly-jennings","id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:59:43.820693+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-driscoll","id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:b1:41","maintenances":[],"modification_date":"2023-10-20T14:14:25.024177+00:00","name":"tf-srv-friendly-jennings","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:14:24.221137+00:00","export_uri":null,"id":"57808eba-a9bf-4a38-b786-ac2cb062e5d6","modification_date":"2023-10-20T14:14:24.221137+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","name":"tf-srv-friendly-jennings"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:bc:d7","maintenances":[],"modification_date":"2023-10-27T08:59:44.383437+00:00","name":"tf-srv-bold-driscoll","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:59:43.820693+00:00","export_uri":null,"id":"83b8c92a-5d52-4f7f-9601-2c1bdde8eb94","modification_date":"2023-10-27T08:59:43.820693+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","name":"tf-srv-bold-driscoll"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2676" + - "2664" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:25 GMT + - Fri, 27 Oct 2023 08:59:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -575,7 +575,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57bf6b42-82dd-473b-b3a0-8a041c829da1 + - 7141ef2f-41a2-4d83-b268-333c04fc0428 status: 200 OK code: 200 duration: "" @@ -584,21 +584,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/1a2e3870-ac79-4336-a5c8-85d537c55814 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/e65b0b4a-e65c-44d9-9170-0ae6ac9338f2 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:14:23.136875Z","gateway_networks":[],"id":"1a2e3870-ac79-4336-a5c8-85d537c55814","ip":{"address":"163.172.151.40","created_at":"2023-10-20T14:14:22.812784Z","gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"a5c6f7e8-7d69-42f2-8f77-e92d394818dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"40-151-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:14:22.812784Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:14:23.875684Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:59:43.078930Z","gateway_networks":[],"id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","ip":{"address":"51.15.138.206","created_at":"2023-10-27T08:59:42.907036Z","gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"e07bc539-52e1-4b82-9c89-5cebbcc0753b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"206-138-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:59:42.907036Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:59:43.708649Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "971" + - "969" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:28 GMT + - Fri, 27 Oct 2023 08:59:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -608,7 +608,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7fc520e0-65ea-4401-a5ac-2e18e6f53c2f + - 041182b2-1cf2-4cd8-911f-7bd35c5fec4c status: 200 OK code: 200 duration: "" @@ -617,21 +617,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/1a2e3870-ac79-4336-a5c8-85d537c55814 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/e65b0b4a-e65c-44d9-9170-0ae6ac9338f2 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:14:23.136875Z","gateway_networks":[],"id":"1a2e3870-ac79-4336-a5c8-85d537c55814","ip":{"address":"163.172.151.40","created_at":"2023-10-20T14:14:22.812784Z","gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"a5c6f7e8-7d69-42f2-8f77-e92d394818dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"40-151-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:14:22.812784Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:14:23.875684Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:59:43.078930Z","gateway_networks":[],"id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","ip":{"address":"51.15.138.206","created_at":"2023-10-27T08:59:42.907036Z","gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"e07bc539-52e1-4b82-9c89-5cebbcc0753b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"206-138-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:59:42.907036Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:59:43.708649Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "971" + - "969" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:28 GMT + - Fri, 27 Oct 2023 08:59:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -641,7 +641,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 775543ed-463d-4a82-8804-5ce70a3b5b76 + - b55a90e6-cd62-41c8-8c54-df88ae22f8a4 status: 200 OK code: 200 duration: "" @@ -650,21 +650,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/1a2e3870-ac79-4336-a5c8-85d537c55814 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/e65b0b4a-e65c-44d9-9170-0ae6ac9338f2 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:14:23.136875Z","gateway_networks":[],"id":"1a2e3870-ac79-4336-a5c8-85d537c55814","ip":{"address":"163.172.151.40","created_at":"2023-10-20T14:14:22.812784Z","gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"a5c6f7e8-7d69-42f2-8f77-e92d394818dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"40-151-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:14:22.812784Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:14:23.875684Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:59:43.078930Z","gateway_networks":[],"id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","ip":{"address":"51.15.138.206","created_at":"2023-10-27T08:59:42.907036Z","gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"e07bc539-52e1-4b82-9c89-5cebbcc0753b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"206-138-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:59:42.907036Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:59:43.708649Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "971" + - "969" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:28 GMT + - Fri, 27 Oct 2023 08:59:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -674,23 +674,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 062a6451-88e0-47e1-b2b0-71da92d988d8 + - 6691c258-3bb6-493e-84a4-283eb37fbea8 status: 200 OK code: 200 duration: "" - request: - body: '{"gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","enable_masquerade":true,"enable_dhcp":true,"dhcp_id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd"}' + body: '{"gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","enable_masquerade":true,"enable_dhcp":true,"dhcp_id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks method: POST response: - body: '{"address":null,"created_at":"2023-10-20T14:14:29.769171Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"0460288e-1696-4f33-ad3a-75e364a948d4","ipam_config":null,"mac_address":null,"private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","status":"created","updated_at":"2023-10-20T14:14:29.769171Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:59:49.605563Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","ipam_config":null,"mac_address":null,"private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","status":"created","updated_at":"2023-10-27T08:59:49.605563Z","zone":"fr-par-1"}' headers: Content-Length: - "983" @@ -699,7 +699,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:29 GMT + - Fri, 27 Oct 2023 08:59:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -709,7 +709,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48bc1a48-a4d6-424e-80e0-8cd1840980b0 + - b0c4bd80-1942-4e2f-92c7-65105ce1d57c status: 200 OK code: 200 duration: "" @@ -718,21 +718,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/1a2e3870-ac79-4336-a5c8-85d537c55814 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/e65b0b4a-e65c-44d9-9170-0ae6ac9338f2 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:14:23.136875Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:14:29.769171Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"0460288e-1696-4f33-ad3a-75e364a948d4","ipam_config":null,"mac_address":null,"private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","status":"created","updated_at":"2023-10-20T14:14:29.769171Z","zone":"fr-par-1"}],"id":"1a2e3870-ac79-4336-a5c8-85d537c55814","ip":{"address":"163.172.151.40","created_at":"2023-10-20T14:14:22.812784Z","gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"a5c6f7e8-7d69-42f2-8f77-e92d394818dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"40-151-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:14:22.812784Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:14:29.960814Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:59:43.078930Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T08:59:49.605563Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","ipam_config":null,"mac_address":null,"private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","status":"created","updated_at":"2023-10-27T08:59:49.605563Z","zone":"fr-par-1"}],"id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","ip":{"address":"51.15.138.206","created_at":"2023-10-27T08:59:42.907036Z","gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"e07bc539-52e1-4b82-9c89-5cebbcc0753b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"206-138-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:59:42.907036Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:59:49.778174Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "1957" + - "1955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:30 GMT + - Fri, 27 Oct 2023 08:59:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -742,7 +742,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8caae7c-9a09-410e-97a9-2fc9ce425b77 + - e3b1b6d6-13bb-40fb-80dd-9eca2e505c59 status: 200 OK code: 200 duration: "" @@ -751,27 +751,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:14:24.221137+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-friendly-jennings","id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:59:43.820693+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-driscoll","id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"204","node_id":"19","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:41","maintenances":[],"modification_date":"2023-10-20T14:14:25.024177+00:00","name":"tf-srv-friendly-jennings","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.76.78.37","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:14:24.221137+00:00","export_uri":null,"id":"57808eba-a9bf-4a38-b786-ac2cb062e5d6","modification_date":"2023-10-20T14:14:24.221137+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","name":"tf-srv-friendly-jennings"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"43","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bc:d7","maintenances":[],"modification_date":"2023-10-27T08:59:44.383437+00:00","name":"tf-srv-bold-driscoll","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.110.85","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:59:43.820693+00:00","export_uri":null,"id":"83b8c92a-5d52-4f7f-9601-2c1bdde8eb94","modification_date":"2023-10-27T08:59:43.820693+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","name":"tf-srv-bold-driscoll"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2784" + - "2773" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:30 GMT + - Fri, 27 Oct 2023 08:59:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -781,7 +781,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 099ec3b7-7896-4977-8edf-d019372d3d87 + - 66539e48-a873-4c38-952b-a00bf5359560 status: 200 OK code: 200 duration: "" @@ -790,21 +790,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/1a2e3870-ac79-4336-a5c8-85d537c55814 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/e65b0b4a-e65c-44d9-9170-0ae6ac9338f2 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:14:23.136875Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:14:29.769171Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"0460288e-1696-4f33-ad3a-75e364a948d4","ipam_config":null,"mac_address":"02:00:00:14:57:C5","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","status":"ready","updated_at":"2023-10-20T14:14:32.032283Z","zone":"fr-par-1"}],"id":"1a2e3870-ac79-4336-a5c8-85d537c55814","ip":{"address":"163.172.151.40","created_at":"2023-10-20T14:14:22.812784Z","gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"a5c6f7e8-7d69-42f2-8f77-e92d394818dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"40-151-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:14:22.812784Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:14:32.158729Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:59:43.078930Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T08:59:49.605563Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","ipam_config":null,"mac_address":"02:00:00:14:74:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","status":"ready","updated_at":"2023-10-27T08:59:51.578910Z","zone":"fr-par-1"}],"id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","ip":{"address":"51.15.138.206","created_at":"2023-10-27T08:59:42.907036Z","gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"e07bc539-52e1-4b82-9c89-5cebbcc0753b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"206-138-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:59:42.907036Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:59:51.687639Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "1966" + - "1964" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:35 GMT + - Fri, 27 Oct 2023 08:59:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -814,7 +814,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0da626d8-7644-4905-8dc8-c22407c5dac4 + - cf7a55f9-eb68-4244-97cc-ab513e140784 status: 200 OK code: 200 duration: "" @@ -823,12 +823,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/0460288e-1696-4f33-ad3a-75e364a948d4 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/cf3fe49b-ff13-4eaa-a50c-50dbd316737a method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:14:29.769171Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"0460288e-1696-4f33-ad3a-75e364a948d4","ipam_config":null,"mac_address":"02:00:00:14:57:C5","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","status":"ready","updated_at":"2023-10-20T14:14:32.032283Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:59:49.605563Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","ipam_config":null,"mac_address":"02:00:00:14:74:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","status":"ready","updated_at":"2023-10-27T08:59:51.578910Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -837,7 +837,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:35 GMT + - Fri, 27 Oct 2023 08:59:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -847,7 +847,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2629ac3e-0c01-4068-847c-4ee998ed6894 + - 38a86d1e-ba5a-4571-bf70-3f1697b9c679 status: 200 OK code: 200 duration: "" @@ -856,12 +856,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/0460288e-1696-4f33-ad3a-75e364a948d4 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/cf3fe49b-ff13-4eaa-a50c-50dbd316737a method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:14:29.769171Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"0460288e-1696-4f33-ad3a-75e364a948d4","ipam_config":null,"mac_address":"02:00:00:14:57:C5","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","status":"ready","updated_at":"2023-10-20T14:14:32.032283Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:59:49.605563Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","ipam_config":null,"mac_address":"02:00:00:14:74:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","status":"ready","updated_at":"2023-10-27T08:59:51.578910Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -870,7 +870,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:35 GMT + - Fri, 27 Oct 2023 08:59:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -880,7 +880,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c06fac65-02d5-463e-b58c-c1c438e2c1ab + - 97fe81fa-6c04-40f4-bc8a-5aa108d91dad status: 200 OK code: 200 duration: "" @@ -889,21 +889,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/1a2e3870-ac79-4336-a5c8-85d537c55814 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/e65b0b4a-e65c-44d9-9170-0ae6ac9338f2 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:14:23.136875Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:14:29.769171Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"0460288e-1696-4f33-ad3a-75e364a948d4","ipam_config":null,"mac_address":"02:00:00:14:57:C5","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","status":"ready","updated_at":"2023-10-20T14:14:32.032283Z","zone":"fr-par-1"}],"id":"1a2e3870-ac79-4336-a5c8-85d537c55814","ip":{"address":"163.172.151.40","created_at":"2023-10-20T14:14:22.812784Z","gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"a5c6f7e8-7d69-42f2-8f77-e92d394818dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"40-151-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:14:22.812784Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:14:32.158729Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:59:43.078930Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T08:59:49.605563Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","ipam_config":null,"mac_address":"02:00:00:14:74:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","status":"ready","updated_at":"2023-10-27T08:59:51.578910Z","zone":"fr-par-1"}],"id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","ip":{"address":"51.15.138.206","created_at":"2023-10-27T08:59:42.907036Z","gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"e07bc539-52e1-4b82-9c89-5cebbcc0753b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"206-138-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:59:42.907036Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:59:51.687639Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "1966" + - "1964" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:35 GMT + - Fri, 27 Oct 2023 08:59:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -913,7 +913,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 741f4e51-9b76-4221-a7ae-24663ef2360a + - 24f61737-53a6-4d89-83b2-b74f2924e60e status: 200 OK code: 200 duration: "" @@ -922,12 +922,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/0460288e-1696-4f33-ad3a-75e364a948d4 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/cf3fe49b-ff13-4eaa-a50c-50dbd316737a method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:14:29.769171Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"0460288e-1696-4f33-ad3a-75e364a948d4","ipam_config":null,"mac_address":"02:00:00:14:57:C5","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","status":"ready","updated_at":"2023-10-20T14:14:32.032283Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:59:49.605563Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","ipam_config":null,"mac_address":"02:00:00:14:74:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","status":"ready","updated_at":"2023-10-27T08:59:51.578910Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -936,7 +936,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:35 GMT + - Fri, 27 Oct 2023 08:59:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -946,7 +946,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99d477dc-b580-44c8-b78c-3c5b1a6038db + - 4672ebf5-2c0e-4d3e-a080-331ad6c7486a status: 200 OK code: 200 duration: "" @@ -955,27 +955,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:14:24.221137+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-friendly-jennings","id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:59:43.820693+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-driscoll","id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"204","node_id":"19","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:41","maintenances":[],"modification_date":"2023-10-20T14:14:25.024177+00:00","name":"tf-srv-friendly-jennings","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.76.78.37","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:14:24.221137+00:00","export_uri":null,"id":"57808eba-a9bf-4a38-b786-ac2cb062e5d6","modification_date":"2023-10-20T14:14:24.221137+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","name":"tf-srv-friendly-jennings"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"43","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bc:d7","maintenances":[],"modification_date":"2023-10-27T08:59:44.383437+00:00","name":"tf-srv-bold-driscoll","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.110.85","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:59:43.820693+00:00","export_uri":null,"id":"83b8c92a-5d52-4f7f-9601-2c1bdde8eb94","modification_date":"2023-10-27T08:59:43.820693+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","name":"tf-srv-bold-driscoll"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2784" + - "2773" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:35 GMT + - Fri, 27 Oct 2023 08:59:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -985,7 +985,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a8b9822-916a-4011-b013-2ac195550eeb + - bc9416ff-f505-4c61-bc5b-03edd4d0db66 status: 200 OK code: 200 duration: "" @@ -994,27 +994,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7 method: GET response: - body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:14:24.221137+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-friendly-jennings","id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:59:43.820693+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-driscoll","id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"204","node_id":"19","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:41","maintenances":[],"modification_date":"2023-10-20T14:14:25.024177+00:00","name":"tf-srv-friendly-jennings","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.76.78.37","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:14:24.221137+00:00","export_uri":null,"id":"57808eba-a9bf-4a38-b786-ac2cb062e5d6","modification_date":"2023-10-20T14:14:24.221137+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","name":"tf-srv-friendly-jennings"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"43","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bc:d7","maintenances":[],"modification_date":"2023-10-27T08:59:57.280050+00:00","name":"tf-srv-bold-driscoll","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.110.85","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:59:43.820693+00:00","export_uri":null,"id":"83b8c92a-5d52-4f7f-9601-2c1bdde8eb94","modification_date":"2023-10-27T08:59:43.820693+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","name":"tf-srv-bold-driscoll"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2784" + - "2804" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:41 GMT + - Fri, 27 Oct 2023 09:00:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1024,7 +1024,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 476e0217-a893-4915-8ce3-591f53fcebda + - 4c19385b-922a-4746-933a-707a53670256 status: 200 OK code: 200 duration: "" @@ -1033,27 +1033,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ac96a017-00ac-4d5f-9e03-00d3e4ca3113 method: GET response: - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON - scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:14:24.221137+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-friendly-jennings","id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"204","node_id":"19","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:41","maintenances":[],"modification_date":"2023-10-20T14:14:44.602659+00:00","name":"tf-srv-friendly-jennings","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.76.78.37","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:14:24.221137+00:00","export_uri":null,"id":"57808eba-a9bf-4a38-b786-ac2cb062e5d6","modification_date":"2023-10-20T14:14:24.221137+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","name":"tf-srv-friendly-jennings"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2023-10-27T08:59:42.335705Z","dhcp_enabled":true,"id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","name":"TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T08:59:42.335705Z","id":"6d73c456-fa7c-4640-8932-d74994d73fd7","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:48.640022Z"},{"created_at":"2023-10-27T08:59:42.335705Z","id":"9388d2f4-015d-49eb-a164-3808575ecc31","subnet":"fd46:78ab:30b8:39e5::/64","updated_at":"2023-10-27T08:59:48.643774Z"}],"tags":[],"updated_at":"2023-10-27T08:59:51.308559Z","vpc_id":"37dbace1-345f-4b46-9b6f-35f1ff8c64f9"}' headers: Content-Length: - - "2815" + - "763" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:46 GMT + - Fri, 27 Oct 2023 09:00:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1063,7 +1057,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f954e837-d1f3-48d3-8225-657501ad1218 + - 37ee4c6d-5c59-4a3f-8f94-d1570ad14e23 status: 200 OK code: 200 duration: "" @@ -1072,21 +1066,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/17818dee-ef3c-4c6a-b5a4-d701ee98d1e5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7 method: GET response: - body: '{"created_at":"2023-10-20T14:14:22.245911Z","id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","name":"TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":["192.168.1.0/24","fd5f:519c:6d46:bb1a::/64"],"tags":[],"updated_at":"2023-10-20T14:14:31.637798Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON + scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:59:43.820693+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-driscoll","id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"43","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bc:d7","maintenances":[],"modification_date":"2023-10-27T08:59:57.280050+00:00","name":"tf-srv-bold-driscoll","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.110.85","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:59:43.820693+00:00","export_uri":null,"id":"83b8c92a-5d52-4f7f-9601-2c1bdde8eb94","modification_date":"2023-10-27T08:59:43.820693+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","name":"tf-srv-bold-driscoll"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "405" + - "2804" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:47 GMT + - Fri, 27 Oct 2023 09:00:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1096,36 +1096,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e76ae645-da5c-4989-8f17-a92a82956391 + - d226480b-75e5-47d0-b884-542997402ac0 status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/private_nics + method: POST response: - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON - scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:14:24.221137+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-friendly-jennings","id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"204","node_id":"19","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:41","maintenances":[],"modification_date":"2023-10-20T14:14:44.602659+00:00","name":"tf-srv-friendly-jennings","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.76.78.37","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:14:24.221137+00:00","export_uri":null,"id":"57808eba-a9bf-4a38-b786-ac2cb062e5d6","modification_date":"2023-10-20T14:14:24.221137+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","name":"tf-srv-friendly-jennings"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:00.586198+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "2815" + - "376" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:47 GMT + - Fri, 27 Oct 2023 09:00:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1135,23 +1131,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e2ec63a-9fe5-4f29-88ce-31d974ddfcbd - status: 200 OK - code: 200 + - bec5826c-bab6-4c3e-9447-771a3faa4dd8 + status: 201 Created + code: 201 duration: "" - request: - body: '{"private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79/private_nics - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/private_nics/47261e53-5760-45c7-9f08-88ea679d0cca + method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:14:47.348863+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:01.021591+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1160,7 +1154,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:48 GMT + - Fri, 27 Oct 2023 09:00:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1170,21 +1164,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 395bf24b-cf9f-4153-be20-fe245f544a6c - status: 201 Created - code: 201 + - 3bf3146a-9444-4bf1-bac6-a03b85685244 + status: 200 OK + code: 200 duration: "" - request: body: "" form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79/private_nics/de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/private_nics/47261e53-5760-45c7-9f08-88ea679d0cca method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:14:47.782869+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:01.505638+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1193,7 +1187,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:48 GMT + - Fri, 27 Oct 2023 09:00:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1203,7 +1197,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef5b3d52-a20c-4e6f-ac12-88f65cf52a53 + - 3cbc9ccc-68b4-41bd-afdf-94ff76f63aa5 status: 200 OK code: 200 duration: "" @@ -1212,12 +1206,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79/private_nics/de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/private_nics/47261e53-5760-45c7-9f08-88ea679d0cca method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:14:48.164421+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:01.505638+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1226,7 +1220,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:53 GMT + - Fri, 27 Oct 2023 09:00:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1236,7 +1230,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0386b71a-6591-4e26-85c6-71f1a081c4cc + - 1ef8895a-14e7-4acc-b21b-854ab5fa2a4f status: 200 OK code: 200 duration: "" @@ -1245,12 +1239,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79/private_nics/de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/private_nics/47261e53-5760-45c7-9f08-88ea679d0cca method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:14:48.164421+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:01.505638+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1259,7 +1253,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:14:58 GMT + - Fri, 27 Oct 2023 09:00:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1269,7 +1263,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96b61eb7-dd08-4a61-9882-0f98943a993d + - 7bed6ab7-b958-4056-add0-7239c7772ed9 status: 200 OK code: 200 duration: "" @@ -1278,12 +1272,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79/private_nics/de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/private_nics/47261e53-5760-45c7-9f08-88ea679d0cca method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:14:48.164421+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:01.505638+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1292,7 +1286,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:03 GMT + - Fri, 27 Oct 2023 09:00:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1302,7 +1296,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42a6f9c5-37cf-4bd2-a2ad-9f29f108ae63 + - 89991596-0ad8-4e43-b5f0-0dcf539cb0fe status: 200 OK code: 200 duration: "" @@ -1311,12 +1305,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79/private_nics/de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/private_nics/47261e53-5760-45c7-9f08-88ea679d0cca method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:14:48.164421+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:01.505638+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1325,7 +1319,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:09 GMT + - Fri, 27 Oct 2023 09:00:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1335,7 +1329,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6a9b529-0d52-4021-882f-4d5eb7f226e5 + - 6aae158d-3401-47f6-99d0-eb009e23cdee status: 200 OK code: 200 duration: "" @@ -1344,12 +1338,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79/private_nics/de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/private_nics/47261e53-5760-45c7-9f08-88ea679d0cca method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:14:48.164421+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:01.505638+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1358,7 +1352,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:14 GMT + - Fri, 27 Oct 2023 09:00:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1368,7 +1362,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7c3312e-7a84-45a3-8568-3b48b21dfbb9 + - e17977a2-17a4-423a-bf47-d720e986b321 status: 200 OK code: 200 duration: "" @@ -1377,12 +1371,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79/private_nics/de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/private_nics/47261e53-5760-45c7-9f08-88ea679d0cca method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:15:18.863566+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:33.200421+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "378" @@ -1391,7 +1385,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:19 GMT + - Fri, 27 Oct 2023 09:00:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1401,7 +1395,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3595e07-dc1a-4374-860f-e29ec7b32b92 + - d2a26af7-3ef0-4e28-aebc-55db4558c8e6 status: 200 OK code: 200 duration: "" @@ -1410,12 +1404,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79/private_nics/de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/private_nics/47261e53-5760-45c7-9f08-88ea679d0cca method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:15:18.863566+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:33.200421+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "378" @@ -1424,7 +1418,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:19 GMT + - Fri, 27 Oct 2023 09:00:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1434,7 +1428,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97ccd0ec-803c-4aea-93ac-f54324603255 + - 27edfbc7-0c30-4ec2-bd01-0dea98531cd3 status: 200 OK code: 200 duration: "" @@ -1443,27 +1437,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7 method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:14:24.221137+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-friendly-jennings","id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:59:43.820693+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-driscoll","id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"204","node_id":"19","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:41","maintenances":[],"modification_date":"2023-10-20T14:14:44.602659+00:00","name":"tf-srv-friendly-jennings","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.76.78.37","private_nics":[{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:15:18.863566+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:14:24.221137+00:00","export_uri":null,"id":"57808eba-a9bf-4a38-b786-ac2cb062e5d6","modification_date":"2023-10-20T14:14:24.221137+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","name":"tf-srv-friendly-jennings"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"43","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bc:d7","maintenances":[],"modification_date":"2023-10-27T08:59:57.280050+00:00","name":"tf-srv-bold-driscoll","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.110.85","private_nics":[{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:33.200421+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:59:43.820693+00:00","export_uri":null,"id":"83b8c92a-5d52-4f7f-9601-2c1bdde8eb94","modification_date":"2023-10-27T08:59:43.820693+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","name":"tf-srv-bold-driscoll"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3168" + - "3157" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:19 GMT + - Fri, 27 Oct 2023 09:00:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1473,7 +1467,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5444c8dc-8576-47db-8606-3fd647daed5c + - d14be901-8b6c-4427-ab5f-0cbeb5c1032e status: 200 OK code: 200 duration: "" @@ -1482,9 +1476,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/user_data method: GET response: body: '{"user_data":[]}' @@ -1496,7 +1490,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:19 GMT + - Fri, 27 Oct 2023 09:00:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1506,7 +1500,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eeadf93b-cb4e-4aeb-99d5-209c3b3019ab + - 7eaed868-96a4-44e1-a326-b26ccce806d7 status: 200 OK code: 200 duration: "" @@ -1515,12 +1509,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:15:18.863566+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:33.200421+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "381" @@ -1529,9 +1523,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:19 GMT + - Fri, 27 Oct 2023 09:00:37 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -1542,7 +1536,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b77a2a58-f412-482c-996e-99f93c64db04 + - 5ee86326-440f-4fed-a313-34f558aed4f1 X-Total-Count: - "1" status: 200 OK @@ -1553,21 +1547,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/a5c6f7e8-7d69-42f2-8f77-e92d394818dd + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/e07bc539-52e1-4b82-9c89-5cebbcc0753b method: GET response: - body: '{"address":"163.172.151.40","created_at":"2023-10-20T14:14:22.812784Z","gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"a5c6f7e8-7d69-42f2-8f77-e92d394818dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"40-151-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:14:22.812784Z","zone":"fr-par-1"}' + body: '{"address":"51.15.138.206","created_at":"2023-10-27T08:59:42.907036Z","gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"e07bc539-52e1-4b82-9c89-5cebbcc0753b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"206-138-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:59:42.907036Z","zone":"fr-par-1"}' headers: Content-Length: - - "403" + - "401" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:20 GMT + - Fri, 27 Oct 2023 09:00:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1577,7 +1571,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 894fa6b8-dc4b-4c1d-831c-ec40c84c0bd4 + - 126815e5-fecd-4ae6-91ef-5e123307fb58 status: 200 OK code: 200 duration: "" @@ -1586,12 +1580,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/ed17287e-2e94-4739-a493-5cfc6f7ad4dd + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/70d2fd66-fbb2-4df0-9e0e-ddbe1296f683 method: GET response: - body: '{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"}' headers: Content-Length: - "586" @@ -1600,7 +1594,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:20 GMT + - Fri, 27 Oct 2023 09:00:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1610,7 +1604,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63b276fd-208c-4410-85c9-1951b5b394a3 + - 4112daa2-0338-4b38-9093-b0240066aead status: 200 OK code: 200 duration: "" @@ -1619,12 +1613,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/17818dee-ef3c-4c6a-b5a4-d701ee98d1e5 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ac96a017-00ac-4d5f-9e03-00d3e4ca3113 method: GET response: - body: '{"created_at":"2023-10-20T14:14:22.245911Z","dhcp_enabled":true,"id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","name":"TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T14:14:22.245911Z","id":"c0296ded-0a66-4433-a721-f673df956b04","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:28.828429Z"},{"created_at":"2023-10-20T14:14:22.245911Z","id":"ebebdf6b-cab1-4e79-a6e5-e269e008ab01","subnet":"fd5f:519c:6d46:bb1a::/64","updated_at":"2023-10-20T14:14:28.831803Z"}],"tags":[],"updated_at":"2023-10-20T14:14:31.637798Z","vpc_id":"cb875747-553b-4b6e-b685-3443026330ec"}' + body: '{"created_at":"2023-10-27T08:59:42.335705Z","dhcp_enabled":true,"id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","name":"TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T08:59:42.335705Z","id":"6d73c456-fa7c-4640-8932-d74994d73fd7","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:48.640022Z"},{"created_at":"2023-10-27T08:59:42.335705Z","id":"9388d2f4-015d-49eb-a164-3808575ecc31","subnet":"fd46:78ab:30b8:39e5::/64","updated_at":"2023-10-27T08:59:48.643774Z"}],"tags":[],"updated_at":"2023-10-27T08:59:51.308559Z","vpc_id":"37dbace1-345f-4b46-9b6f-35f1ff8c64f9"}' headers: Content-Length: - "763" @@ -1633,7 +1627,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:20 GMT + - Fri, 27 Oct 2023 09:00:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1643,7 +1637,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06e6d392-678c-461c-9ad5-adbd2c1e561b + - 4c2e1147-78b3-4ace-8c5d-4f3258580c7a status: 200 OK code: 200 duration: "" @@ -1652,21 +1646,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/1a2e3870-ac79-4336-a5c8-85d537c55814 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/e65b0b4a-e65c-44d9-9170-0ae6ac9338f2 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:14:23.136875Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:14:29.769171Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"0460288e-1696-4f33-ad3a-75e364a948d4","ipam_config":null,"mac_address":"02:00:00:14:57:C5","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","status":"ready","updated_at":"2023-10-20T14:14:32.032283Z","zone":"fr-par-1"}],"id":"1a2e3870-ac79-4336-a5c8-85d537c55814","ip":{"address":"163.172.151.40","created_at":"2023-10-20T14:14:22.812784Z","gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"a5c6f7e8-7d69-42f2-8f77-e92d394818dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"40-151-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:14:22.812784Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:14:32.158729Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:59:43.078930Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T08:59:49.605563Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","ipam_config":null,"mac_address":"02:00:00:14:74:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","status":"ready","updated_at":"2023-10-27T08:59:51.578910Z","zone":"fr-par-1"}],"id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","ip":{"address":"51.15.138.206","created_at":"2023-10-27T08:59:42.907036Z","gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"e07bc539-52e1-4b82-9c89-5cebbcc0753b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"206-138-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:59:42.907036Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:59:51.687639Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "1966" + - "1964" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:20 GMT + - Fri, 27 Oct 2023 09:00:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1676,7 +1670,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8f28418-1c0c-4a8a-b1a5-5d2b79d27286 + - 418c34b8-9046-43b5-ad01-f1c97f8138c8 status: 200 OK code: 200 duration: "" @@ -1685,12 +1679,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/0460288e-1696-4f33-ad3a-75e364a948d4 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/cf3fe49b-ff13-4eaa-a50c-50dbd316737a method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:14:29.769171Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"0460288e-1696-4f33-ad3a-75e364a948d4","ipam_config":null,"mac_address":"02:00:00:14:57:C5","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","status":"ready","updated_at":"2023-10-20T14:14:32.032283Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:59:49.605563Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","ipam_config":null,"mac_address":"02:00:00:14:74:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","status":"ready","updated_at":"2023-10-27T08:59:51.578910Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -1699,7 +1693,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:20 GMT + - Fri, 27 Oct 2023 09:00:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1709,7 +1703,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bc91ab7-7c93-45bc-bfd8-5ec9bef00416 + - f70bd4eb-99e5-47e1-8284-84316fb97d0a status: 200 OK code: 200 duration: "" @@ -1718,21 +1712,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/1a2e3870-ac79-4336-a5c8-85d537c55814 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/e65b0b4a-e65c-44d9-9170-0ae6ac9338f2 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:14:23.136875Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:14:29.769171Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"0460288e-1696-4f33-ad3a-75e364a948d4","ipam_config":null,"mac_address":"02:00:00:14:57:C5","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","status":"ready","updated_at":"2023-10-20T14:14:32.032283Z","zone":"fr-par-1"}],"id":"1a2e3870-ac79-4336-a5c8-85d537c55814","ip":{"address":"163.172.151.40","created_at":"2023-10-20T14:14:22.812784Z","gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"a5c6f7e8-7d69-42f2-8f77-e92d394818dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"40-151-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:14:22.812784Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:14:32.158729Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:59:43.078930Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T08:59:49.605563Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","ipam_config":null,"mac_address":"02:00:00:14:74:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","status":"ready","updated_at":"2023-10-27T08:59:51.578910Z","zone":"fr-par-1"}],"id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","ip":{"address":"51.15.138.206","created_at":"2023-10-27T08:59:42.907036Z","gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"e07bc539-52e1-4b82-9c89-5cebbcc0753b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"206-138-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:59:42.907036Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:59:51.687639Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "1966" + - "1964" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:20 GMT + - Fri, 27 Oct 2023 09:00:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1742,7 +1736,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bfa2fb83-298e-4192-bfc9-ff254fd64ab9 + - ef408eb6-a5a5-4a55-8d33-83129a93a5ff status: 200 OK code: 200 duration: "" @@ -1751,27 +1745,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7 method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:14:24.221137+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-friendly-jennings","id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:59:43.820693+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-driscoll","id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"204","node_id":"19","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:41","maintenances":[],"modification_date":"2023-10-20T14:14:44.602659+00:00","name":"tf-srv-friendly-jennings","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.76.78.37","private_nics":[{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:15:18.863566+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:14:24.221137+00:00","export_uri":null,"id":"57808eba-a9bf-4a38-b786-ac2cb062e5d6","modification_date":"2023-10-20T14:14:24.221137+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","name":"tf-srv-friendly-jennings"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"43","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bc:d7","maintenances":[],"modification_date":"2023-10-27T08:59:57.280050+00:00","name":"tf-srv-bold-driscoll","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.110.85","private_nics":[{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:33.200421+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:59:43.820693+00:00","export_uri":null,"id":"83b8c92a-5d52-4f7f-9601-2c1bdde8eb94","modification_date":"2023-10-27T08:59:43.820693+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","name":"tf-srv-bold-driscoll"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3168" + - "3157" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:20 GMT + - Fri, 27 Oct 2023 09:00:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1781,7 +1775,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 789af50c-4758-4267-a1ba-9203f0551bca + - 046d0ceb-8839-487d-909f-ea2bb725c8d7 status: 200 OK code: 200 duration: "" @@ -1790,21 +1784,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/0460288e-1696-4f33-ad3a-75e364a948d4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/user_data method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:14:29.769171Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"0460288e-1696-4f33-ad3a-75e364a948d4","ipam_config":null,"mac_address":"02:00:00:14:57:C5","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","status":"ready","updated_at":"2023-10-20T14:14:32.032283Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "996" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:20 GMT + - Fri, 27 Oct 2023 09:00:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1814,7 +1808,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 302b6d64-c73a-42d1-922a-dca144b8aebc + - 17976791-a9c6-4e37-9f81-010f44a98c5e status: 200 OK code: 200 duration: "" @@ -1823,21 +1817,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79/user_data + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/cf3fe49b-ff13-4eaa-a50c-50dbd316737a method: GET response: - body: '{"user_data":[]}' + body: '{"address":null,"created_at":"2023-10-27T08:59:49.605563Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","ipam_config":null,"mac_address":"02:00:00:14:74:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","status":"ready","updated_at":"2023-10-27T08:59:51.578910Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "996" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:20 GMT + - Fri, 27 Oct 2023 09:00:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1847,7 +1841,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a39a11d-9608-4b4b-806f-192082c1cc34 + - 917a2d3a-4b17-4690-8649-6fde5ba18333 status: 200 OK code: 200 duration: "" @@ -1856,12 +1850,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:15:18.863566+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:33.200421+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "381" @@ -1870,9 +1864,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:20 GMT + - Fri, 27 Oct 2023 09:00:38 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -1883,7 +1877,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e095835-1ff4-46d5-a0b6-27d2aee66238 + - 7335a260-1a40-482a-a5c9-4a5b58f4b4a4 X-Total-Count: - "1" status: 200 OK @@ -1894,21 +1888,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/a5c6f7e8-7d69-42f2-8f77-e92d394818dd + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/e07bc539-52e1-4b82-9c89-5cebbcc0753b method: GET response: - body: '{"address":"163.172.151.40","created_at":"2023-10-20T14:14:22.812784Z","gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"a5c6f7e8-7d69-42f2-8f77-e92d394818dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"40-151-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:14:22.812784Z","zone":"fr-par-1"}' + body: '{"address":"51.15.138.206","created_at":"2023-10-27T08:59:42.907036Z","gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"e07bc539-52e1-4b82-9c89-5cebbcc0753b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"206-138-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:59:42.907036Z","zone":"fr-par-1"}' headers: Content-Length: - - "403" + - "401" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:21 GMT + - Fri, 27 Oct 2023 09:00:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1918,7 +1912,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5dca63cd-f2a5-4450-9170-7fd68d23f13b + - d3bb9807-b29f-4255-b0ae-cb0f28a55204 status: 200 OK code: 200 duration: "" @@ -1927,12 +1921,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/ed17287e-2e94-4739-a493-5cfc6f7ad4dd + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/70d2fd66-fbb2-4df0-9e0e-ddbe1296f683 method: GET response: - body: '{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"}' headers: Content-Length: - "586" @@ -1941,7 +1935,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:21 GMT + - Fri, 27 Oct 2023 09:00:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1951,7 +1945,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - baafd9d2-3cf5-4367-b52a-78a64f137e9a + - 1c4af8ce-91c2-4f0a-9127-ff9454bf9dcf status: 200 OK code: 200 duration: "" @@ -1960,12 +1954,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/17818dee-ef3c-4c6a-b5a4-d701ee98d1e5 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ac96a017-00ac-4d5f-9e03-00d3e4ca3113 method: GET response: - body: '{"created_at":"2023-10-20T14:14:22.245911Z","dhcp_enabled":true,"id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","name":"TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T14:14:22.245911Z","id":"c0296ded-0a66-4433-a721-f673df956b04","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:28.828429Z"},{"created_at":"2023-10-20T14:14:22.245911Z","id":"ebebdf6b-cab1-4e79-a6e5-e269e008ab01","subnet":"fd5f:519c:6d46:bb1a::/64","updated_at":"2023-10-20T14:14:28.831803Z"}],"tags":[],"updated_at":"2023-10-20T14:14:31.637798Z","vpc_id":"cb875747-553b-4b6e-b685-3443026330ec"}' + body: '{"created_at":"2023-10-27T08:59:42.335705Z","dhcp_enabled":true,"id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","name":"TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T08:59:42.335705Z","id":"6d73c456-fa7c-4640-8932-d74994d73fd7","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:48.640022Z"},{"created_at":"2023-10-27T08:59:42.335705Z","id":"9388d2f4-015d-49eb-a164-3808575ecc31","subnet":"fd46:78ab:30b8:39e5::/64","updated_at":"2023-10-27T08:59:48.643774Z"}],"tags":[],"updated_at":"2023-10-27T08:59:51.308559Z","vpc_id":"37dbace1-345f-4b46-9b6f-35f1ff8c64f9"}' headers: Content-Length: - "763" @@ -1974,7 +1968,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:21 GMT + - Fri, 27 Oct 2023 09:00:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1984,7 +1978,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7ef3533-94da-4e89-bb4d-192333411b9b + - 09ce1ae0-d896-40a0-9a9d-8ed417b6c3db status: 200 OK code: 200 duration: "" @@ -1993,21 +1987,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/1a2e3870-ac79-4336-a5c8-85d537c55814 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/e65b0b4a-e65c-44d9-9170-0ae6ac9338f2 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:14:23.136875Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:14:29.769171Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"0460288e-1696-4f33-ad3a-75e364a948d4","ipam_config":null,"mac_address":"02:00:00:14:57:C5","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","status":"ready","updated_at":"2023-10-20T14:14:32.032283Z","zone":"fr-par-1"}],"id":"1a2e3870-ac79-4336-a5c8-85d537c55814","ip":{"address":"163.172.151.40","created_at":"2023-10-20T14:14:22.812784Z","gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"a5c6f7e8-7d69-42f2-8f77-e92d394818dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"40-151-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:14:22.812784Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:14:32.158729Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:59:43.078930Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T08:59:49.605563Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","ipam_config":null,"mac_address":"02:00:00:14:74:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","status":"ready","updated_at":"2023-10-27T08:59:51.578910Z","zone":"fr-par-1"}],"id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","ip":{"address":"51.15.138.206","created_at":"2023-10-27T08:59:42.907036Z","gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"e07bc539-52e1-4b82-9c89-5cebbcc0753b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"206-138-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:59:42.907036Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:59:51.687639Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "1966" + - "1964" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:21 GMT + - Fri, 27 Oct 2023 09:00:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2017,7 +2011,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39edae69-da8f-483b-bd26-a324b698f20e + - 078ee75e-ff94-4506-b13e-dc0dc89e17db status: 200 OK code: 200 duration: "" @@ -2026,12 +2020,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/0460288e-1696-4f33-ad3a-75e364a948d4 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/cf3fe49b-ff13-4eaa-a50c-50dbd316737a method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:14:29.769171Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"0460288e-1696-4f33-ad3a-75e364a948d4","ipam_config":null,"mac_address":"02:00:00:14:57:C5","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","status":"ready","updated_at":"2023-10-20T14:14:32.032283Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:59:49.605563Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","ipam_config":null,"mac_address":"02:00:00:14:74:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","status":"ready","updated_at":"2023-10-27T08:59:51.578910Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -2040,7 +2034,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:21 GMT + - Fri, 27 Oct 2023 09:00:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2050,7 +2044,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cac07261-6715-48de-8ac2-9573965e5441 + - edd4079f-7809-42b6-bf45-fa287e707c10 status: 200 OK code: 200 duration: "" @@ -2059,21 +2053,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/1a2e3870-ac79-4336-a5c8-85d537c55814 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/e65b0b4a-e65c-44d9-9170-0ae6ac9338f2 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:14:23.136875Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:14:29.769171Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"0460288e-1696-4f33-ad3a-75e364a948d4","ipam_config":null,"mac_address":"02:00:00:14:57:C5","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","status":"ready","updated_at":"2023-10-20T14:14:32.032283Z","zone":"fr-par-1"}],"id":"1a2e3870-ac79-4336-a5c8-85d537c55814","ip":{"address":"163.172.151.40","created_at":"2023-10-20T14:14:22.812784Z","gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"a5c6f7e8-7d69-42f2-8f77-e92d394818dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"40-151-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:14:22.812784Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:14:32.158729Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:59:43.078930Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T08:59:49.605563Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","ipam_config":null,"mac_address":"02:00:00:14:74:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","status":"ready","updated_at":"2023-10-27T08:59:51.578910Z","zone":"fr-par-1"}],"id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","ip":{"address":"51.15.138.206","created_at":"2023-10-27T08:59:42.907036Z","gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"e07bc539-52e1-4b82-9c89-5cebbcc0753b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"206-138-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:59:42.907036Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:59:51.687639Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "1966" + - "1964" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:21 GMT + - Fri, 27 Oct 2023 09:00:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2083,7 +2077,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71aca894-ae37-45b1-86fd-58e9dfbf2c3c + - cf42ec4f-315f-4c6f-849f-4c19a0b07d18 status: 200 OK code: 200 duration: "" @@ -2092,21 +2086,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/0460288e-1696-4f33-ad3a-75e364a948d4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7 method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:14:29.769171Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"0460288e-1696-4f33-ad3a-75e364a948d4","ipam_config":null,"mac_address":"02:00:00:14:57:C5","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","status":"ready","updated_at":"2023-10-20T14:14:32.032283Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON + scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:59:43.820693+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-driscoll","id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"43","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bc:d7","maintenances":[],"modification_date":"2023-10-27T08:59:57.280050+00:00","name":"tf-srv-bold-driscoll","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.110.85","private_nics":[{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:33.200421+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:59:43.820693+00:00","export_uri":null,"id":"83b8c92a-5d52-4f7f-9601-2c1bdde8eb94","modification_date":"2023-10-27T08:59:43.820693+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","name":"tf-srv-bold-driscoll"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "996" + - "3157" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:21 GMT + - Fri, 27 Oct 2023 09:00:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2116,7 +2116,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8367b2bf-e1de-4783-b360-62755e665ed0 + - bfc6b172-f050-4e15-9e44-9e1345bd321b status: 200 OK code: 200 duration: "" @@ -2125,27 +2125,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/cf3fe49b-ff13-4eaa-a50c-50dbd316737a method: GET response: - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON - scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:14:24.221137+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-friendly-jennings","id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"204","node_id":"19","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:41","maintenances":[],"modification_date":"2023-10-20T14:14:44.602659+00:00","name":"tf-srv-friendly-jennings","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.76.78.37","private_nics":[{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:15:18.863566+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:14:24.221137+00:00","export_uri":null,"id":"57808eba-a9bf-4a38-b786-ac2cb062e5d6","modification_date":"2023-10-20T14:14:24.221137+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","name":"tf-srv-friendly-jennings"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"address":null,"created_at":"2023-10-27T08:59:49.605563Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","ipam_config":null,"mac_address":"02:00:00:14:74:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","status":"ready","updated_at":"2023-10-27T08:59:51.578910Z","zone":"fr-par-1"}' headers: Content-Length: - - "3168" + - "996" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:21 GMT + - Fri, 27 Oct 2023 09:00:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2155,7 +2149,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a7eeed7-400b-4b22-ae69-db7de108248a + - 1e4d9a55-df1e-4e5d-804a-3e74d9388056 status: 200 OK code: 200 duration: "" @@ -2164,9 +2158,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/user_data method: GET response: body: '{"user_data":[]}' @@ -2178,7 +2172,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:21 GMT + - Fri, 27 Oct 2023 09:00:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2188,7 +2182,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8936b4b8-2366-4bf5-ab3f-7eeaa285fa87 + - 6950ec65-d2cf-4714-85ac-7f30ebf03b8e status: 200 OK code: 200 duration: "" @@ -2197,12 +2191,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:15:18.863566+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:33.200421+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "381" @@ -2211,9 +2205,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:21 GMT + - Fri, 27 Oct 2023 09:00:38 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -2224,7 +2218,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b140593d-2187-4561-b495-8d9826057b4f + - 2bc769f2-276f-4bfd-a8d4-f6b6c1ed6181 X-Total-Count: - "1" status: 200 OK @@ -2235,21 +2229,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries?gateway_network_id=0460288e-1696-4f33-ad3a-75e364a948d4&mac_address=02%3A00%3A00%3A14%3A57%3Ac8&order_by=created_at_asc&type=unknown + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries?gateway_network_id=cf3fe49b-ff13-4eaa-a50c-50dbd316737a&mac_address=02%3A00%3A00%3A14%3A74%3A01&order_by=created_at_asc&type=unknown method: GET response: - body: '{"dhcp_entries":[{"created_at":"2023-10-20T14:14:48.093471Z","gateway_network_id":"0460288e-1696-4f33-ad3a-75e364a948d4","hostname":"tf-srv-friendly-jennings","id":"45d937f2-80a4-4055-ba94-617a8d8810bb","ip_address":"192.168.1.2","mac_address":"02:00:00:14:57:c8","type":"reservation","updated_at":"2023-10-20T14:14:48.093471Z","zone":"fr-par-1"}],"total_count":1}' + body: '{"dhcp_entries":[{"created_at":"2023-10-27T09:00:01.379190Z","gateway_network_id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","hostname":"tf-srv-bold-driscoll","id":"cb27b9fb-fe44-47db-be3d-0fd014b719e8","ip_address":"192.168.1.2","mac_address":"02:00:00:14:74:01","type":"reservation","updated_at":"2023-10-27T09:00:01.379190Z","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "373" + - "369" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:21 GMT + - Fri, 27 Oct 2023 09:00:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2259,7 +2253,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6fd70224-2058-46a6-8f63-ba6162618b6d + - 01f1aab7-6a31-4be3-88bf-6665537d014a status: 200 OK code: 200 duration: "" @@ -2268,21 +2262,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/45d937f2-80a4-4055-ba94-617a8d8810bb + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/cb27b9fb-fe44-47db-be3d-0fd014b719e8 method: GET response: - body: '{"created_at":"2023-10-20T14:14:48.093471Z","gateway_network_id":"0460288e-1696-4f33-ad3a-75e364a948d4","hostname":"tf-srv-friendly-jennings","id":"45d937f2-80a4-4055-ba94-617a8d8810bb","ip_address":"192.168.1.2","mac_address":"02:00:00:14:57:c8","type":"reservation","updated_at":"2023-10-20T14:14:48.093471Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:00:01.379190Z","gateway_network_id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","hostname":"tf-srv-bold-driscoll","id":"cb27b9fb-fe44-47db-be3d-0fd014b719e8","ip_address":"192.168.1.2","mac_address":"02:00:00:14:74:01","type":"reservation","updated_at":"2023-10-27T09:00:01.379190Z","zone":"fr-par-1"}' headers: Content-Length: - - "337" + - "333" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:21 GMT + - Fri, 27 Oct 2023 09:00:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2292,7 +2286,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9b1328b-54d8-42f9-a1b4-fe642a113d41 + - eb66bd1e-9714-490e-b4d1-4d37546e8b36 status: 200 OK code: 200 duration: "" @@ -2301,21 +2295,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries?gateway_network_id=0460288e-1696-4f33-ad3a-75e364a948d4&mac_address=02%3A00%3A00%3A14%3A57%3Ac8&order_by=created_at_asc&type=unknown + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries?gateway_network_id=cf3fe49b-ff13-4eaa-a50c-50dbd316737a&mac_address=02%3A00%3A00%3A14%3A74%3A01&order_by=created_at_asc&type=unknown method: GET response: - body: '{"dhcp_entries":[{"created_at":"2023-10-20T14:14:48.093471Z","gateway_network_id":"0460288e-1696-4f33-ad3a-75e364a948d4","hostname":"tf-srv-friendly-jennings","id":"45d937f2-80a4-4055-ba94-617a8d8810bb","ip_address":"192.168.1.2","mac_address":"02:00:00:14:57:c8","type":"reservation","updated_at":"2023-10-20T14:14:48.093471Z","zone":"fr-par-1"}],"total_count":1}' + body: '{"dhcp_entries":[{"created_at":"2023-10-27T09:00:01.379190Z","gateway_network_id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","hostname":"tf-srv-bold-driscoll","id":"cb27b9fb-fe44-47db-be3d-0fd014b719e8","ip_address":"192.168.1.2","mac_address":"02:00:00:14:74:01","type":"reservation","updated_at":"2023-10-27T09:00:01.379190Z","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "373" + - "369" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:22 GMT + - Fri, 27 Oct 2023 09:00:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2325,7 +2319,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb019fb1-9395-4497-aa0e-661c4115c9ed + - e2a57b68-84d7-453f-ae16-301a679c249b status: 200 OK code: 200 duration: "" @@ -2334,21 +2328,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/45d937f2-80a4-4055-ba94-617a8d8810bb + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/cb27b9fb-fe44-47db-be3d-0fd014b719e8 method: GET response: - body: '{"created_at":"2023-10-20T14:14:48.093471Z","gateway_network_id":"0460288e-1696-4f33-ad3a-75e364a948d4","hostname":"tf-srv-friendly-jennings","id":"45d937f2-80a4-4055-ba94-617a8d8810bb","ip_address":"192.168.1.2","mac_address":"02:00:00:14:57:c8","type":"reservation","updated_at":"2023-10-20T14:14:48.093471Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:00:01.379190Z","gateway_network_id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","hostname":"tf-srv-bold-driscoll","id":"cb27b9fb-fe44-47db-be3d-0fd014b719e8","ip_address":"192.168.1.2","mac_address":"02:00:00:14:74:01","type":"reservation","updated_at":"2023-10-27T09:00:01.379190Z","zone":"fr-par-1"}' headers: Content-Length: - - "337" + - "333" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:22 GMT + - Fri, 27 Oct 2023 09:00:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2358,7 +2352,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49aa2269-ffed-496d-b8ef-c86046721ea9 + - 5ed05683-0ef3-44c8-9330-c9e12c59814f status: 200 OK code: 200 duration: "" @@ -2367,21 +2361,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries?gateway_network_id=0460288e-1696-4f33-ad3a-75e364a948d4&mac_address=02%3A00%3A00%3A14%3A57%3Ac8&order_by=created_at_asc&type=unknown + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries?gateway_network_id=cf3fe49b-ff13-4eaa-a50c-50dbd316737a&mac_address=02%3A00%3A00%3A14%3A74%3A01&order_by=created_at_asc&type=unknown method: GET response: - body: '{"dhcp_entries":[{"created_at":"2023-10-20T14:14:48.093471Z","gateway_network_id":"0460288e-1696-4f33-ad3a-75e364a948d4","hostname":"tf-srv-friendly-jennings","id":"45d937f2-80a4-4055-ba94-617a8d8810bb","ip_address":"192.168.1.2","mac_address":"02:00:00:14:57:c8","type":"reservation","updated_at":"2023-10-20T14:14:48.093471Z","zone":"fr-par-1"}],"total_count":1}' + body: '{"dhcp_entries":[{"created_at":"2023-10-27T09:00:01.379190Z","gateway_network_id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","hostname":"tf-srv-bold-driscoll","id":"cb27b9fb-fe44-47db-be3d-0fd014b719e8","ip_address":"192.168.1.2","mac_address":"02:00:00:14:74:01","type":"reservation","updated_at":"2023-10-27T09:00:01.379190Z","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "373" + - "369" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:22 GMT + - Fri, 27 Oct 2023 09:00:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2391,7 +2385,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02c35500-7948-43d3-ba5a-e057f67b5e57 + - f96e37df-f0e0-4a69-b2c1-c6efe22800a8 status: 200 OK code: 200 duration: "" @@ -2400,21 +2394,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/45d937f2-80a4-4055-ba94-617a8d8810bb + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/cb27b9fb-fe44-47db-be3d-0fd014b719e8 method: GET response: - body: '{"created_at":"2023-10-20T14:14:48.093471Z","gateway_network_id":"0460288e-1696-4f33-ad3a-75e364a948d4","hostname":"tf-srv-friendly-jennings","id":"45d937f2-80a4-4055-ba94-617a8d8810bb","ip_address":"192.168.1.2","mac_address":"02:00:00:14:57:c8","type":"reservation","updated_at":"2023-10-20T14:14:48.093471Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:00:01.379190Z","gateway_network_id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","hostname":"tf-srv-bold-driscoll","id":"cb27b9fb-fe44-47db-be3d-0fd014b719e8","ip_address":"192.168.1.2","mac_address":"02:00:00:14:74:01","type":"reservation","updated_at":"2023-10-27T09:00:01.379190Z","zone":"fr-par-1"}' headers: Content-Length: - - "337" + - "333" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:22 GMT + - Fri, 27 Oct 2023 09:00:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2424,7 +2418,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca9d6f8d-3176-4a26-9c1c-9279a24bac5a + - db4475f7-246e-45b6-a649-61295793a856 status: 200 OK code: 200 duration: "" @@ -2433,21 +2427,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/a5c6f7e8-7d69-42f2-8f77-e92d394818dd + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/e07bc539-52e1-4b82-9c89-5cebbcc0753b method: GET response: - body: '{"address":"163.172.151.40","created_at":"2023-10-20T14:14:22.812784Z","gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"a5c6f7e8-7d69-42f2-8f77-e92d394818dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"40-151-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:14:22.812784Z","zone":"fr-par-1"}' + body: '{"address":"51.15.138.206","created_at":"2023-10-27T08:59:42.907036Z","gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"e07bc539-52e1-4b82-9c89-5cebbcc0753b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"206-138-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:59:42.907036Z","zone":"fr-par-1"}' headers: Content-Length: - - "403" + - "401" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:23 GMT + - Fri, 27 Oct 2023 09:00:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2457,7 +2451,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c036d828-ef44-44f6-a706-2e64f7ad39cb + - 272ebfd2-f267-48af-bb05-943dee3843a9 status: 200 OK code: 200 duration: "" @@ -2466,12 +2460,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/ed17287e-2e94-4739-a493-5cfc6f7ad4dd + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/70d2fd66-fbb2-4df0-9e0e-ddbe1296f683 method: GET response: - body: '{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"}' headers: Content-Length: - "586" @@ -2480,7 +2474,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:23 GMT + - Fri, 27 Oct 2023 09:00:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2490,7 +2484,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4874bc1b-9ff4-4943-a37a-b3a3daa77fbc + - 11deb01f-ba51-497e-8c13-3336631e7e06 status: 200 OK code: 200 duration: "" @@ -2499,12 +2493,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/17818dee-ef3c-4c6a-b5a4-d701ee98d1e5 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ac96a017-00ac-4d5f-9e03-00d3e4ca3113 method: GET response: - body: '{"created_at":"2023-10-20T14:14:22.245911Z","dhcp_enabled":true,"id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","name":"TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T14:14:22.245911Z","id":"c0296ded-0a66-4433-a721-f673df956b04","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:28.828429Z"},{"created_at":"2023-10-20T14:14:22.245911Z","id":"ebebdf6b-cab1-4e79-a6e5-e269e008ab01","subnet":"fd5f:519c:6d46:bb1a::/64","updated_at":"2023-10-20T14:14:28.831803Z"}],"tags":[],"updated_at":"2023-10-20T14:14:31.637798Z","vpc_id":"cb875747-553b-4b6e-b685-3443026330ec"}' + body: '{"created_at":"2023-10-27T08:59:42.335705Z","dhcp_enabled":true,"id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","name":"TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T08:59:42.335705Z","id":"6d73c456-fa7c-4640-8932-d74994d73fd7","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:48.640022Z"},{"created_at":"2023-10-27T08:59:42.335705Z","id":"9388d2f4-015d-49eb-a164-3808575ecc31","subnet":"fd46:78ab:30b8:39e5::/64","updated_at":"2023-10-27T08:59:48.643774Z"}],"tags":[],"updated_at":"2023-10-27T08:59:51.308559Z","vpc_id":"37dbace1-345f-4b46-9b6f-35f1ff8c64f9"}' headers: Content-Length: - "763" @@ -2513,7 +2507,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:23 GMT + - Fri, 27 Oct 2023 09:00:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2523,7 +2517,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21ae748a-8417-4026-a88d-055bcbfeb801 + - a72d4f58-a60f-402e-8397-9b45741359a1 status: 200 OK code: 200 duration: "" @@ -2532,21 +2526,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/1a2e3870-ac79-4336-a5c8-85d537c55814 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/e65b0b4a-e65c-44d9-9170-0ae6ac9338f2 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:14:23.136875Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:14:29.769171Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"0460288e-1696-4f33-ad3a-75e364a948d4","ipam_config":null,"mac_address":"02:00:00:14:57:C5","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","status":"ready","updated_at":"2023-10-20T14:14:32.032283Z","zone":"fr-par-1"}],"id":"1a2e3870-ac79-4336-a5c8-85d537c55814","ip":{"address":"163.172.151.40","created_at":"2023-10-20T14:14:22.812784Z","gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"a5c6f7e8-7d69-42f2-8f77-e92d394818dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"40-151-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:14:22.812784Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:14:32.158729Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:59:43.078930Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T08:59:49.605563Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","ipam_config":null,"mac_address":"02:00:00:14:74:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","status":"ready","updated_at":"2023-10-27T08:59:51.578910Z","zone":"fr-par-1"}],"id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","ip":{"address":"51.15.138.206","created_at":"2023-10-27T08:59:42.907036Z","gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"e07bc539-52e1-4b82-9c89-5cebbcc0753b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"206-138-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:59:42.907036Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:59:51.687639Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "1966" + - "1964" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:23 GMT + - Fri, 27 Oct 2023 09:00:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2556,7 +2550,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d0f4a04-50b9-4d33-bd67-f149b101eb92 + - f1b0c55e-020a-4e15-b809-a813ee4be803 status: 200 OK code: 200 duration: "" @@ -2565,12 +2559,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/0460288e-1696-4f33-ad3a-75e364a948d4 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/cf3fe49b-ff13-4eaa-a50c-50dbd316737a method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:14:29.769171Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"0460288e-1696-4f33-ad3a-75e364a948d4","ipam_config":null,"mac_address":"02:00:00:14:57:C5","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","status":"ready","updated_at":"2023-10-20T14:14:32.032283Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:59:49.605563Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","ipam_config":null,"mac_address":"02:00:00:14:74:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","status":"ready","updated_at":"2023-10-27T08:59:51.578910Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -2579,7 +2573,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:23 GMT + - Fri, 27 Oct 2023 09:00:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2589,7 +2583,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0dc4127-9075-4df9-8ce5-70aec6b8ad67 + - 1d12734f-93d4-4f20-8baa-db2429e79f0b status: 200 OK code: 200 duration: "" @@ -2598,21 +2592,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/1a2e3870-ac79-4336-a5c8-85d537c55814 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/e65b0b4a-e65c-44d9-9170-0ae6ac9338f2 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:14:23.136875Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:14:29.769171Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"0460288e-1696-4f33-ad3a-75e364a948d4","ipam_config":null,"mac_address":"02:00:00:14:57:C5","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","status":"ready","updated_at":"2023-10-20T14:14:32.032283Z","zone":"fr-par-1"}],"id":"1a2e3870-ac79-4336-a5c8-85d537c55814","ip":{"address":"163.172.151.40","created_at":"2023-10-20T14:14:22.812784Z","gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"a5c6f7e8-7d69-42f2-8f77-e92d394818dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"40-151-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:14:22.812784Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:14:32.158729Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:59:43.078930Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T08:59:49.605563Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","ipam_config":null,"mac_address":"02:00:00:14:74:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","status":"ready","updated_at":"2023-10-27T08:59:51.578910Z","zone":"fr-par-1"}],"id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","ip":{"address":"51.15.138.206","created_at":"2023-10-27T08:59:42.907036Z","gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"e07bc539-52e1-4b82-9c89-5cebbcc0753b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"206-138-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:59:42.907036Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:59:51.687639Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "1966" + - "1964" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:23 GMT + - Fri, 27 Oct 2023 09:00:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2622,7 +2616,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aea67b01-b46d-4dad-8232-f938af0fd309 + - cb7e53fb-f161-478e-8212-54bf3f956a98 status: 200 OK code: 200 duration: "" @@ -2631,21 +2625,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/0460288e-1696-4f33-ad3a-75e364a948d4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7 method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:14:29.769171Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"0460288e-1696-4f33-ad3a-75e364a948d4","ipam_config":null,"mac_address":"02:00:00:14:57:C5","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","status":"ready","updated_at":"2023-10-20T14:14:32.032283Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON + scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:59:43.820693+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-driscoll","id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"43","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bc:d7","maintenances":[],"modification_date":"2023-10-27T08:59:57.280050+00:00","name":"tf-srv-bold-driscoll","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.110.85","private_nics":[{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:33.200421+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:59:43.820693+00:00","export_uri":null,"id":"83b8c92a-5d52-4f7f-9601-2c1bdde8eb94","modification_date":"2023-10-27T08:59:43.820693+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","name":"tf-srv-bold-driscoll"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "996" + - "3157" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:23 GMT + - Fri, 27 Oct 2023 09:00:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2655,7 +2655,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f425af9-4558-4b30-af96-9fbdc2fb07ca + - 1e7ea89b-8902-459b-8ef5-6e08d1196a63 status: 200 OK code: 200 duration: "" @@ -2664,27 +2664,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/cf3fe49b-ff13-4eaa-a50c-50dbd316737a method: GET response: - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON - scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:14:24.221137+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-friendly-jennings","id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"204","node_id":"19","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:41","maintenances":[],"modification_date":"2023-10-20T14:14:44.602659+00:00","name":"tf-srv-friendly-jennings","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.76.78.37","private_nics":[{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:15:18.863566+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:14:24.221137+00:00","export_uri":null,"id":"57808eba-a9bf-4a38-b786-ac2cb062e5d6","modification_date":"2023-10-20T14:14:24.221137+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","name":"tf-srv-friendly-jennings"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"address":null,"created_at":"2023-10-27T08:59:49.605563Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","ipam_config":null,"mac_address":"02:00:00:14:74:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","status":"ready","updated_at":"2023-10-27T08:59:51.578910Z","zone":"fr-par-1"}' headers: Content-Length: - - "3168" + - "996" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:23 GMT + - Fri, 27 Oct 2023 09:00:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2694,7 +2688,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec6ecad1-ee9f-44fc-ac2d-24e5d44234bd + - 7cc4c8bd-40eb-4a64-9cef-1df62aa96691 status: 200 OK code: 200 duration: "" @@ -2703,9 +2697,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/user_data method: GET response: body: '{"user_data":[]}' @@ -2717,7 +2711,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:23 GMT + - Fri, 27 Oct 2023 09:00:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2727,7 +2721,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60cb1dbd-14a8-4e5e-b300-a85db506af25 + - 261b0992-3b51-44b2-a327-72d9d06d02a8 status: 200 OK code: 200 duration: "" @@ -2736,12 +2730,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:15:18.863566+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:33.200421+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "381" @@ -2750,9 +2744,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:23 GMT + - Fri, 27 Oct 2023 09:00:41 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -2763,7 +2757,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9fc80f9-5082-40a7-bac2-a9a1a44c96f4 + - 29dff847-5892-4cce-b5e8-0011ea480d5a X-Total-Count: - "1" status: 200 OK @@ -2774,21 +2768,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries?gateway_network_id=0460288e-1696-4f33-ad3a-75e364a948d4&mac_address=02%3A00%3A00%3A14%3A57%3Ac8&order_by=created_at_asc&type=unknown + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries?gateway_network_id=cf3fe49b-ff13-4eaa-a50c-50dbd316737a&mac_address=02%3A00%3A00%3A14%3A74%3A01&order_by=created_at_asc&type=unknown method: GET response: - body: '{"dhcp_entries":[{"created_at":"2023-10-20T14:14:48.093471Z","gateway_network_id":"0460288e-1696-4f33-ad3a-75e364a948d4","hostname":"tf-srv-friendly-jennings","id":"45d937f2-80a4-4055-ba94-617a8d8810bb","ip_address":"192.168.1.2","mac_address":"02:00:00:14:57:c8","type":"reservation","updated_at":"2023-10-20T14:14:48.093471Z","zone":"fr-par-1"}],"total_count":1}' + body: '{"dhcp_entries":[{"created_at":"2023-10-27T09:00:01.379190Z","gateway_network_id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","hostname":"tf-srv-bold-driscoll","id":"cb27b9fb-fe44-47db-be3d-0fd014b719e8","ip_address":"192.168.1.2","mac_address":"02:00:00:14:74:01","type":"reservation","updated_at":"2023-10-27T09:00:01.379190Z","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "373" + - "369" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:23 GMT + - Fri, 27 Oct 2023 09:00:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2798,7 +2792,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b545312f-7b98-4442-8824-e68b96250ac6 + - 5251c97d-77da-4307-b3c1-772bf80275e0 status: 200 OK code: 200 duration: "" @@ -2807,21 +2801,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/45d937f2-80a4-4055-ba94-617a8d8810bb + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/cb27b9fb-fe44-47db-be3d-0fd014b719e8 method: GET response: - body: '{"created_at":"2023-10-20T14:14:48.093471Z","gateway_network_id":"0460288e-1696-4f33-ad3a-75e364a948d4","hostname":"tf-srv-friendly-jennings","id":"45d937f2-80a4-4055-ba94-617a8d8810bb","ip_address":"192.168.1.2","mac_address":"02:00:00:14:57:c8","type":"reservation","updated_at":"2023-10-20T14:14:48.093471Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:00:01.379190Z","gateway_network_id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","hostname":"tf-srv-bold-driscoll","id":"cb27b9fb-fe44-47db-be3d-0fd014b719e8","ip_address":"192.168.1.2","mac_address":"02:00:00:14:74:01","type":"reservation","updated_at":"2023-10-27T09:00:01.379190Z","zone":"fr-par-1"}' headers: Content-Length: - - "337" + - "333" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:23 GMT + - Fri, 27 Oct 2023 09:00:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2831,7 +2825,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1adb8486-4742-458b-8993-6fe9f298e7ed + - 1d0b8ee4-0e56-43f8-a134-788c4db70333 status: 200 OK code: 200 duration: "" @@ -2840,21 +2834,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries?gateway_network_id=0460288e-1696-4f33-ad3a-75e364a948d4&mac_address=02%3A00%3A00%3A14%3A57%3Ac8&order_by=created_at_asc&type=unknown + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries?gateway_network_id=cf3fe49b-ff13-4eaa-a50c-50dbd316737a&mac_address=02%3A00%3A00%3A14%3A74%3A01&order_by=created_at_asc&type=unknown method: GET response: - body: '{"dhcp_entries":[{"created_at":"2023-10-20T14:14:48.093471Z","gateway_network_id":"0460288e-1696-4f33-ad3a-75e364a948d4","hostname":"tf-srv-friendly-jennings","id":"45d937f2-80a4-4055-ba94-617a8d8810bb","ip_address":"192.168.1.2","mac_address":"02:00:00:14:57:c8","type":"reservation","updated_at":"2023-10-20T14:14:48.093471Z","zone":"fr-par-1"}],"total_count":1}' + body: '{"dhcp_entries":[{"created_at":"2023-10-27T09:00:01.379190Z","gateway_network_id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","hostname":"tf-srv-bold-driscoll","id":"cb27b9fb-fe44-47db-be3d-0fd014b719e8","ip_address":"192.168.1.2","mac_address":"02:00:00:14:74:01","type":"reservation","updated_at":"2023-10-27T09:00:01.379190Z","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "373" + - "369" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:23 GMT + - Fri, 27 Oct 2023 09:00:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2864,7 +2858,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3769f6d-9e69-4651-b89d-f714f82e2dc7 + - c20cf45c-d4cd-4052-9c60-ac1b05d6c180 status: 200 OK code: 200 duration: "" @@ -2873,21 +2867,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/45d937f2-80a4-4055-ba94-617a8d8810bb + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/cb27b9fb-fe44-47db-be3d-0fd014b719e8 method: GET response: - body: '{"created_at":"2023-10-20T14:14:48.093471Z","gateway_network_id":"0460288e-1696-4f33-ad3a-75e364a948d4","hostname":"tf-srv-friendly-jennings","id":"45d937f2-80a4-4055-ba94-617a8d8810bb","ip_address":"192.168.1.2","mac_address":"02:00:00:14:57:c8","type":"reservation","updated_at":"2023-10-20T14:14:48.093471Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:00:01.379190Z","gateway_network_id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","hostname":"tf-srv-bold-driscoll","id":"cb27b9fb-fe44-47db-be3d-0fd014b719e8","ip_address":"192.168.1.2","mac_address":"02:00:00:14:74:01","type":"reservation","updated_at":"2023-10-27T09:00:01.379190Z","zone":"fr-par-1"}' headers: Content-Length: - - "337" + - "333" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:23 GMT + - Fri, 27 Oct 2023 09:00:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2897,7 +2891,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c53adf1e-1fcd-4f6d-b622-0e938bb499a4 + - 773ddd54-e6a2-41b9-8c2f-aa7ad611ad79 status: 200 OK code: 200 duration: "" @@ -2906,12 +2900,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/0460288e-1696-4f33-ad3a-75e364a948d4 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/cf3fe49b-ff13-4eaa-a50c-50dbd316737a method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:14:29.769171Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"0460288e-1696-4f33-ad3a-75e364a948d4","ipam_config":null,"mac_address":"02:00:00:14:57:C5","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","status":"ready","updated_at":"2023-10-20T14:14:32.032283Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:59:49.605563Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","ipam_config":null,"mac_address":"02:00:00:14:74:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","status":"ready","updated_at":"2023-10-27T08:59:51.578910Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -2920,7 +2914,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:25 GMT + - Fri, 27 Oct 2023 09:00:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2930,7 +2924,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 825e5ac5-a711-47a1-baa5-4e97efa46916 + - 959cd739-d650-47cb-b392-e2ccf5b14a0c status: 200 OK code: 200 duration: "" @@ -2939,27 +2933,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7 method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:14:24.221137+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-friendly-jennings","id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:59:43.820693+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-driscoll","id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"204","node_id":"19","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:41","maintenances":[],"modification_date":"2023-10-20T14:14:44.602659+00:00","name":"tf-srv-friendly-jennings","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.76.78.37","private_nics":[{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:15:18.863566+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:14:24.221137+00:00","export_uri":null,"id":"57808eba-a9bf-4a38-b786-ac2cb062e5d6","modification_date":"2023-10-20T14:14:24.221137+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","name":"tf-srv-friendly-jennings"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"43","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bc:d7","maintenances":[],"modification_date":"2023-10-27T08:59:57.280050+00:00","name":"tf-srv-bold-driscoll","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.110.85","private_nics":[{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:33.200421+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:59:43.820693+00:00","export_uri":null,"id":"83b8c92a-5d52-4f7f-9601-2c1bdde8eb94","modification_date":"2023-10-27T08:59:43.820693+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","name":"tf-srv-bold-driscoll"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3168" + - "3157" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:25 GMT + - Fri, 27 Oct 2023 09:00:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2969,7 +2963,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51083f36-4717-473d-af26-36abc1c87e4a + - a6045bb2-f51e-49bb-bb52-c3aab5ece809 status: 200 OK code: 200 duration: "" @@ -2978,9 +2972,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/0460288e-1696-4f33-ad3a-75e364a948d4?cleanup_dhcp=true + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/cf3fe49b-ff13-4eaa-a50c-50dbd316737a?cleanup_dhcp=true method: DELETE response: body: "" @@ -2990,7 +2984,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:25 GMT + - Fri, 27 Oct 2023 09:00:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3000,7 +2994,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa3533c3-7296-4864-8445-011c473dfcfa + - 146beca4-d783-4a21-81f3-91c8ab29ff22 status: 204 No Content code: 204 duration: "" @@ -3009,12 +3003,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/0460288e-1696-4f33-ad3a-75e364a948d4 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/cf3fe49b-ff13-4eaa-a50c-50dbd316737a method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:14:29.769171Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:14:22.247261Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:14:22.247261Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"0460288e-1696-4f33-ad3a-75e364a948d4","ipam_config":null,"mac_address":"02:00:00:14:57:C5","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","status":"detaching","updated_at":"2023-10-20T14:15:25.175011Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:59:49.605563Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:59:42.326443Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:59:42.326443Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","ipam_config":null,"mac_address":"02:00:00:14:74:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","status":"detaching","updated_at":"2023-10-27T09:00:42.193812Z","zone":"fr-par-1"}' headers: Content-Length: - "1000" @@ -3023,7 +3017,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:25 GMT + - Fri, 27 Oct 2023 09:00:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3033,7 +3027,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc599216-bcb0-403a-b8c3-6ca7044b4037 + - 8d033752-783e-4c3a-a3e4-b9015fa3079d status: 200 OK code: 200 duration: "" @@ -3044,12 +3038,12 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/action method: POST response: - body: '{"task":{"description":"server_poweroff","href_from":"/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79/action","href_result":"/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79","id":"6c5b4acb-0af6-45b8-b3be-0eaf97bff009","started_at":"2023-10-20T14:15:25.472567+00:00","status":"pending","terminated_at":null}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/action","href_result":"/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","id":"efca927c-1b9d-4e0f-a406-9bda0f6df3ad","started_at":"2023-10-27T09:00:42.510260+00:00","status":"pending","terminated_at":null}}' headers: Content-Length: - "317" @@ -3058,9 +3052,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:25 GMT + - Fri, 27 Oct 2023 09:00:42 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6c5b4acb-0af6-45b8-b3be-0eaf97bff009 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/efca927c-1b9d-4e0f-a406-9bda0f6df3ad Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3070,7 +3064,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc924429-8ca1-4c47-8412-6800ebeae940 + - 7ed9c2d2-d465-4d98-8353-92f18007c847 status: 202 Accepted code: 202 duration: "" @@ -3079,27 +3073,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:14:24.221137+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-friendly-jennings","id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:59:43.820693+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-driscoll","id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"204","node_id":"19","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:41","maintenances":[],"modification_date":"2023-10-20T14:15:25.171456+00:00","name":"tf-srv-friendly-jennings","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.76.78.37","private_nics":[{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:15:18.863566+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:14:24.221137+00:00","export_uri":null,"id":"57808eba-a9bf-4a38-b786-ac2cb062e5d6","modification_date":"2023-10-20T14:14:24.221137+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","name":"tf-srv-friendly-jennings"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"43","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bc:d7","maintenances":[],"modification_date":"2023-10-27T09:00:42.218943+00:00","name":"tf-srv-bold-driscoll","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.110.85","private_nics":[{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:33.200421+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:59:43.820693+00:00","export_uri":null,"id":"83b8c92a-5d52-4f7f-9601-2c1bdde8eb94","modification_date":"2023-10-27T08:59:43.820693+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","name":"tf-srv-bold-driscoll"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3136" + - "3125" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:25 GMT + - Fri, 27 Oct 2023 09:00:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3109,7 +3103,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f385859a-8c22-49b4-9a86-53d0ab39bd0d + - 1951b40d-3198-4706-a9a2-35572f767c32 status: 200 OK code: 200 duration: "" @@ -3118,12 +3112,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/0460288e-1696-4f33-ad3a-75e364a948d4 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/cf3fe49b-ff13-4eaa-a50c-50dbd316737a method: GET response: - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"0460288e-1696-4f33-ad3a-75e364a948d4","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"cf3fe49b-ff13-4eaa-a50c-50dbd316737a","type":"not_found"}' headers: Content-Length: - "136" @@ -3132,7 +3126,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:30 GMT + - Fri, 27 Oct 2023 09:00:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3142,7 +3136,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e4bed26-3be5-4d5d-a861-edcd1957ee4d + - bd081a9e-3392-4efd-9495-7623186ca0eb status: 404 Not Found code: 404 duration: "" @@ -3151,21 +3145,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/1a2e3870-ac79-4336-a5c8-85d537c55814 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/e65b0b4a-e65c-44d9-9170-0ae6ac9338f2 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:14:23.136875Z","gateway_networks":[],"id":"1a2e3870-ac79-4336-a5c8-85d537c55814","ip":{"address":"163.172.151.40","created_at":"2023-10-20T14:14:22.812784Z","gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"a5c6f7e8-7d69-42f2-8f77-e92d394818dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"40-151-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:14:22.812784Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:14:32.158729Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:59:43.078930Z","gateway_networks":[],"id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","ip":{"address":"51.15.138.206","created_at":"2023-10-27T08:59:42.907036Z","gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"e07bc539-52e1-4b82-9c89-5cebbcc0753b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"206-138-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:59:42.907036Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:59:51.687639Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "970" + - "968" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:30 GMT + - Fri, 27 Oct 2023 09:00:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3175,7 +3169,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e5770bd-3361-45f3-9a12-dbf3283ad934 + - 999e425f-b62f-40cd-88a8-cb2187b4f28e status: 200 OK code: 200 duration: "" @@ -3184,12 +3178,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/ed17287e-2e94-4739-a493-5cfc6f7ad4dd + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/70d2fd66-fbb2-4df0-9e0e-ddbe1296f683 method: DELETE response: - body: '{"message":"resource is not found","resource":"dhcp","resource_id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","type":"not_found"}' + body: '{"message":"resource is not found","resource":"dhcp","resource_id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","type":"not_found"}' headers: Content-Length: - "125" @@ -3198,7 +3192,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:30 GMT + - Fri, 27 Oct 2023 09:00:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3208,7 +3202,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b6edb1c-0b78-4aee-a7b6-9ff5b8afb495 + - bfc77503-25a7-4e04-9d72-5b3670efe1b9 status: 404 Not Found code: 404 duration: "" @@ -3217,21 +3211,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/1a2e3870-ac79-4336-a5c8-85d537c55814 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/e65b0b4a-e65c-44d9-9170-0ae6ac9338f2 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:14:23.136875Z","gateway_networks":[],"id":"1a2e3870-ac79-4336-a5c8-85d537c55814","ip":{"address":"163.172.151.40","created_at":"2023-10-20T14:14:22.812784Z","gateway_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","id":"a5c6f7e8-7d69-42f2-8f77-e92d394818dd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"40-151-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:14:22.812784Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:14:32.158729Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:59:43.078930Z","gateway_networks":[],"id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","ip":{"address":"51.15.138.206","created_at":"2023-10-27T08:59:42.907036Z","gateway_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","id":"e07bc539-52e1-4b82-9c89-5cebbcc0753b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"206-138-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:59:42.907036Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:59:51.687639Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "970" + - "968" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:30 GMT + - Fri, 27 Oct 2023 09:00:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3241,7 +3235,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 074105d0-8646-4e12-91a2-9a0ca71048ba + - 41f7ace2-78df-4532-a3aa-6d4d75dbcb3b status: 200 OK code: 200 duration: "" @@ -3250,9 +3244,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/1a2e3870-ac79-4336-a5c8-85d537c55814?cleanup_dhcp=false + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/e65b0b4a-e65c-44d9-9170-0ae6ac9338f2?cleanup_dhcp=false method: DELETE response: body: "" @@ -3262,7 +3256,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:30 GMT + - Fri, 27 Oct 2023 09:00:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3272,7 +3266,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17dc8754-8f13-4fac-8d80-81d346c73205 + - 396209e3-728f-434b-8dab-bcd9c706f297 status: 204 No Content code: 204 duration: "" @@ -3281,12 +3275,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/1a2e3870-ac79-4336-a5c8-85d537c55814 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/e65b0b4a-e65c-44d9-9170-0ae6ac9338f2 method: GET response: - body: '{"message":"resource is not found","resource":"gateway","resource_id":"1a2e3870-ac79-4336-a5c8-85d537c55814","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"e65b0b4a-e65c-44d9-9170-0ae6ac9338f2","type":"not_found"}' headers: Content-Length: - "128" @@ -3295,7 +3289,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:30 GMT + - Fri, 27 Oct 2023 09:00:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3305,7 +3299,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9dc84261-a57e-4b90-8b4e-fd9b8ac4cee7 + - d38d692c-2efc-49d0-9648-907c2553c192 status: 404 Not Found code: 404 duration: "" @@ -3314,9 +3308,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/a5c6f7e8-7d69-42f2-8f77-e92d394818dd + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/e07bc539-52e1-4b82-9c89-5cebbcc0753b method: DELETE response: body: "" @@ -3326,7 +3320,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:30 GMT + - Fri, 27 Oct 2023 09:00:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3336,7 +3330,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efaab169-e909-4bc6-bd56-24ec337ab111 + - 410cfbf1-589c-4786-a7ea-ba8996c263d3 status: 204 No Content code: 204 duration: "" @@ -3345,27 +3339,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:14:24.221137+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-friendly-jennings","id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:59:43.820693+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-driscoll","id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"204","node_id":"19","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:41","maintenances":[],"modification_date":"2023-10-20T14:15:25.171456+00:00","name":"tf-srv-friendly-jennings","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.76.78.37","private_nics":[{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:15:18.863566+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:14:24.221137+00:00","export_uri":null,"id":"57808eba-a9bf-4a38-b786-ac2cb062e5d6","modification_date":"2023-10-20T14:14:24.221137+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","name":"tf-srv-friendly-jennings"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"43","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bc:d7","maintenances":[],"modification_date":"2023-10-27T09:00:42.218943+00:00","name":"tf-srv-bold-driscoll","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.110.85","private_nics":[{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:33.200421+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:59:43.820693+00:00","export_uri":null,"id":"83b8c92a-5d52-4f7f-9601-2c1bdde8eb94","modification_date":"2023-10-27T08:59:43.820693+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","name":"tf-srv-bold-driscoll"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3136" + - "3125" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:30 GMT + - Fri, 27 Oct 2023 09:00:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3375,7 +3369,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 704cab4f-81e9-4742-b0fe-c4a6baa12b0c + - 388ec186-0e14-4f91-9fe5-9089f8bae887 status: 200 OK code: 200 duration: "" @@ -3384,27 +3378,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:14:24.221137+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-friendly-jennings","id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:59:43.820693+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-driscoll","id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"204","node_id":"19","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:41","maintenances":[],"modification_date":"2023-10-20T14:15:25.171456+00:00","name":"tf-srv-friendly-jennings","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.76.78.37","private_nics":[{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:15:18.863566+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:14:24.221137+00:00","export_uri":null,"id":"57808eba-a9bf-4a38-b786-ac2cb062e5d6","modification_date":"2023-10-20T14:14:24.221137+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","name":"tf-srv-friendly-jennings"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"43","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bc:d7","maintenances":[],"modification_date":"2023-10-27T09:00:42.218943+00:00","name":"tf-srv-bold-driscoll","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.110.85","private_nics":[{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:33.200421+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:59:43.820693+00:00","export_uri":null,"id":"83b8c92a-5d52-4f7f-9601-2c1bdde8eb94","modification_date":"2023-10-27T08:59:43.820693+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","name":"tf-srv-bold-driscoll"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3136" + - "3125" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:36 GMT + - Fri, 27 Oct 2023 09:00:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3414,7 +3408,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19246a31-6a1e-4211-b6d6-b85224410d07 + - f861e8e2-3009-4bf1-977e-44145aa1e92e status: 200 OK code: 200 duration: "" @@ -3423,27 +3417,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:14:24.221137+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-friendly-jennings","id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:59:43.820693+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-driscoll","id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"204","node_id":"19","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:41","maintenances":[],"modification_date":"2023-10-20T14:15:25.171456+00:00","name":"tf-srv-friendly-jennings","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.76.78.37","private_nics":[{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:15:18.863566+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:14:24.221137+00:00","export_uri":null,"id":"57808eba-a9bf-4a38-b786-ac2cb062e5d6","modification_date":"2023-10-20T14:14:24.221137+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","name":"tf-srv-friendly-jennings"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"43","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bc:d7","maintenances":[],"modification_date":"2023-10-27T09:00:42.218943+00:00","name":"tf-srv-bold-driscoll","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.110.85","private_nics":[{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:33.200421+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:59:43.820693+00:00","export_uri":null,"id":"83b8c92a-5d52-4f7f-9601-2c1bdde8eb94","modification_date":"2023-10-27T08:59:43.820693+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","name":"tf-srv-bold-driscoll"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3136" + - "3125" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:41 GMT + - Fri, 27 Oct 2023 09:00:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3453,7 +3447,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4b26c1e-151f-41d0-9f56-e7fa8850386d + - 1e374f8d-9c0a-4eca-9c5a-965b3c56c6bf status: 200 OK code: 200 duration: "" @@ -3462,27 +3456,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:14:24.221137+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-friendly-jennings","id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:59:43.820693+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-driscoll","id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"204","node_id":"19","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:41","maintenances":[],"modification_date":"2023-10-20T14:15:25.171456+00:00","name":"tf-srv-friendly-jennings","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.76.78.37","private_nics":[{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:15:18.863566+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:14:24.221137+00:00","export_uri":null,"id":"57808eba-a9bf-4a38-b786-ac2cb062e5d6","modification_date":"2023-10-20T14:14:24.221137+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","name":"tf-srv-friendly-jennings"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"43","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bc:d7","maintenances":[],"modification_date":"2023-10-27T09:00:42.218943+00:00","name":"tf-srv-bold-driscoll","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.110.85","private_nics":[{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:33.200421+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:59:43.820693+00:00","export_uri":null,"id":"83b8c92a-5d52-4f7f-9601-2c1bdde8eb94","modification_date":"2023-10-27T08:59:43.820693+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","name":"tf-srv-bold-driscoll"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3136" + - "3125" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:46 GMT + - Fri, 27 Oct 2023 09:01:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3492,7 +3486,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2101c90d-a2fb-43d9-8c97-857f7020f01a + - e9c17ec4-0e74-44b9-ba6e-a6c096d43352 status: 200 OK code: 200 duration: "" @@ -3501,27 +3495,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:14:24.221137+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-friendly-jennings","id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:59:43.820693+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-driscoll","id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"204","node_id":"19","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:41","maintenances":[],"modification_date":"2023-10-20T14:15:25.171456+00:00","name":"tf-srv-friendly-jennings","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.76.78.37","private_nics":[{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:15:18.863566+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:14:24.221137+00:00","export_uri":null,"id":"57808eba-a9bf-4a38-b786-ac2cb062e5d6","modification_date":"2023-10-20T14:14:24.221137+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","name":"tf-srv-friendly-jennings"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"43","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bc:d7","maintenances":[],"modification_date":"2023-10-27T09:00:42.218943+00:00","name":"tf-srv-bold-driscoll","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.110.85","private_nics":[{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:33.200421+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:59:43.820693+00:00","export_uri":null,"id":"83b8c92a-5d52-4f7f-9601-2c1bdde8eb94","modification_date":"2023-10-27T08:59:43.820693+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","name":"tf-srv-bold-driscoll"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3136" + - "3125" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:51 GMT + - Fri, 27 Oct 2023 09:01:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3531,7 +3525,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13823408-7a22-4cbb-9164-2d7c6fcedbd2 + - ef15a524-c7b1-4b1e-85cb-2643e7efcf36 status: 200 OK code: 200 duration: "" @@ -3540,27 +3534,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:14:24.221137+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-friendly-jennings","id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:59:43.820693+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-driscoll","id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"204","node_id":"19","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:41","maintenances":[],"modification_date":"2023-10-20T14:15:25.171456+00:00","name":"tf-srv-friendly-jennings","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.76.78.37","private_nics":[{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:15:18.863566+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:14:24.221137+00:00","export_uri":null,"id":"57808eba-a9bf-4a38-b786-ac2cb062e5d6","modification_date":"2023-10-20T14:14:24.221137+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","name":"tf-srv-friendly-jennings"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"802","node_id":"43","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bc:d7","maintenances":[],"modification_date":"2023-10-27T09:00:42.218943+00:00","name":"tf-srv-bold-driscoll","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.110.85","private_nics":[{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:33.200421+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:59:43.820693+00:00","export_uri":null,"id":"83b8c92a-5d52-4f7f-9601-2c1bdde8eb94","modification_date":"2023-10-27T08:59:43.820693+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","name":"tf-srv-bold-driscoll"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3136" + - "3125" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:15:56 GMT + - Fri, 27 Oct 2023 09:01:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3570,7 +3564,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2fe4f9a-6ff4-4268-9a8b-6ddd29b58f55 + - 77574dc0-eec0-4a93-b9fc-5bc7f0c93df8 status: 200 OK code: 200 duration: "" @@ -3579,27 +3573,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7 method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:14:24.221137+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-friendly-jennings","id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:59:43.820693+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-driscoll","id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:b1:41","maintenances":[],"modification_date":"2023-10-20T14:15:58.517299+00:00","name":"tf-srv-friendly-jennings","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:15:18.863566+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:14:24.221137+00:00","export_uri":null,"id":"57808eba-a9bf-4a38-b786-ac2cb062e5d6","modification_date":"2023-10-20T14:14:24.221137+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","name":"tf-srv-friendly-jennings"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:bc:d7","maintenances":[],"modification_date":"2023-10-27T09:01:16.369350+00:00","name":"tf-srv-bold-driscoll","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:33.200421+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:59:43.820693+00:00","export_uri":null,"id":"83b8c92a-5d52-4f7f-9601-2c1bdde8eb94","modification_date":"2023-10-27T08:59:43.820693+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","name":"tf-srv-bold-driscoll"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3015" + - "3003" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:16:02 GMT + - Fri, 27 Oct 2023 09:01:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3609,7 +3603,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 650eda48-bc35-47ed-b1fb-5e0824290af9 + - 5372a459-20d2-4740-9165-bee21dc52792 status: 200 OK code: 200 duration: "" @@ -3618,12 +3612,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:15:18.863566+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:33.200421+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "381" @@ -3632,9 +3626,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:16:02 GMT + - Fri, 27 Oct 2023 09:01:18 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -3645,7 +3639,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d35cfa6-c85a-4ff8-a906-498576cfee2e + - b00d87c1-385f-4437-bebc-b87393971148 X-Total-Count: - "1" status: 200 OK @@ -3656,12 +3650,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79/private_nics/de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/private_nics/47261e53-5760-45c7-9f08-88ea679d0cca method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:14:47.348863+00:00","id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","mac_address":"02:00:00:14:57:c8","modification_date":"2023-10-20T14:15:18.863566+00:00","private_network_id":"17818dee-ef3c-4c6a-b5a4-d701ee98d1e5","server_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:00:00.586198+00:00","id":"47261e53-5760-45c7-9f08-88ea679d0cca","mac_address":"02:00:00:14:74:01","modification_date":"2023-10-27T09:00:33.200421+00:00","private_network_id":"ac96a017-00ac-4d5f-9e03-00d3e4ca3113","server_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "378" @@ -3670,7 +3664,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:16:02 GMT + - Fri, 27 Oct 2023 09:01:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3680,7 +3674,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 879039d7-0304-4642-ba8a-db542c98ddc2 + - 742e26a5-a7f8-46f0-ba20-7a462bc4a56b status: 200 OK code: 200 duration: "" @@ -3689,9 +3683,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79/private_nics/de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/private_nics/47261e53-5760-45c7-9f08-88ea679d0cca method: DELETE response: body: "" @@ -3699,7 +3693,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 20 Oct 2023 14:16:02 GMT + - Fri, 27 Oct 2023 09:01:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3709,7 +3703,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eefbb63b-1329-44bb-8ee6-a46c371205d6 + - 055e9463-acf1-42c0-be39-710861c05544 status: 204 No Content code: 204 duration: "" @@ -3718,12 +3712,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79/private_nics/de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7/private_nics/47261e53-5760-45c7-9f08-88ea679d0cca method: GET response: - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"de0ac0f5-5c1e-4896-80e6-63ad3e8f6a20","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"47261e53-5760-45c7-9f08-88ea679d0cca","type":"not_found"}' headers: Content-Length: - "148" @@ -3732,7 +3726,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:16:02 GMT + - Fri, 27 Oct 2023 09:01:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3742,7 +3736,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e80815da-823a-49ad-b4b2-6c7df431492c + - 269da198-4192-4152-8e3c-dcf2d96b0149 status: 404 Not Found code: 404 duration: "" @@ -3751,27 +3745,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7 method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:14:24.221137+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-friendly-jennings","id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:59:43.820693+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-bold-driscoll","id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:b1:41","maintenances":[],"modification_date":"2023-10-20T14:15:58.517299+00:00","name":"tf-srv-friendly-jennings","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:14:24.221137+00:00","export_uri":null,"id":"57808eba-a9bf-4a38-b786-ac2cb062e5d6","modification_date":"2023-10-20T14:14:24.221137+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","name":"tf-srv-friendly-jennings"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:bc:d7","maintenances":[],"modification_date":"2023-10-27T09:01:16.369350+00:00","name":"tf-srv-bold-driscoll","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:59:43.820693+00:00","export_uri":null,"id":"83b8c92a-5d52-4f7f-9601-2c1bdde8eb94","modification_date":"2023-10-27T08:59:43.820693+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","name":"tf-srv-bold-driscoll"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2654" + - "2642" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:16:02 GMT + - Fri, 27 Oct 2023 09:01:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3781,7 +3775,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 003b1255-4f19-4aec-9afd-54b4e18b596d + - 49c556df-d5f8-4bb2-a41d-343e7b1b6812 status: 200 OK code: 200 duration: "" @@ -3790,9 +3784,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7 method: DELETE response: body: "" @@ -3800,7 +3794,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 20 Oct 2023 14:16:02 GMT + - Fri, 27 Oct 2023 09:01:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3810,7 +3804,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94394dd6-c3e0-4310-a74d-a13b72c5a0aa + - 61446c4f-35a4-4a62-8d91-772532ca1d9a status: 204 No Content code: 204 duration: "" @@ -3819,12 +3813,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cfb8a39-b2d6-44db-b247-e9f6ff901e79 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7 method: GET response: - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"0cfb8a39-b2d6-44db-b247-e9f6ff901e79","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"fa8804f1-5cbc-4d2c-8db2-53b03ed40ed7","type":"not_found"}' headers: Content-Length: - "143" @@ -3833,7 +3827,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:16:02 GMT + - Fri, 27 Oct 2023 09:01:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3843,7 +3837,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0eba9ea6-d4a4-4bbd-bcf1-f6010f86124e + - 49fcec34-e8ec-4b7f-b63a-64ce3fb5f53b status: 404 Not Found code: 404 duration: "" @@ -3852,9 +3846,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/57808eba-a9bf-4a38-b786-ac2cb062e5d6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/83b8c92a-5d52-4f7f-9601-2c1bdde8eb94 method: DELETE response: body: "" @@ -3862,7 +3856,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 20 Oct 2023 14:16:03 GMT + - Fri, 27 Oct 2023 09:01:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3872,7 +3866,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62d8e53c-7968-4ba5-bc65-00855d5d5e66 + - 1f8f29a5-fdb3-4264-9fe2-59fcb194b088 status: 204 No Content code: 204 duration: "" @@ -3881,9 +3875,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/17818dee-ef3c-4c6a-b5a4-d701ee98d1e5 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ac96a017-00ac-4d5f-9e03-00d3e4ca3113 method: DELETE response: body: "" @@ -3893,7 +3887,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:16:03 GMT + - Fri, 27 Oct 2023 09:01:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3903,7 +3897,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b1ebd77-2fc1-46e7-8f29-bfa514269177 + - 972385fa-78c2-4229-8325-e6b0255fb352 status: 204 No Content code: 204 duration: "" @@ -3912,12 +3906,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/ed17287e-2e94-4739-a493-5cfc6f7ad4dd + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/70d2fd66-fbb2-4df0-9e0e-ddbe1296f683 method: GET response: - body: '{"message":"resource is not found","resource":"dhcp","resource_id":"ed17287e-2e94-4739-a493-5cfc6f7ad4dd","type":"not_found"}' + body: '{"message":"resource is not found","resource":"dhcp","resource_id":"70d2fd66-fbb2-4df0-9e0e-ddbe1296f683","type":"not_found"}' headers: Content-Length: - "125" @@ -3926,7 +3920,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:16:03 GMT + - Fri, 27 Oct 2023 09:01:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3936,7 +3930,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec864f07-85fd-4e56-977e-870a05e1236f + - 2bce2354-461e-4e88-8c81-0eb48be1037c status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/data-source-vpc-public-gateway-dhcp-reservation-static.cassette.yaml b/scaleway/testdata/data-source-vpc-public-gateway-dhcp-reservation-static.cassette.yaml index d3834f15d4..4135073292 100644 --- a/scaleway/testdata/data-source-vpc-public-gateway-dhcp-reservation-static.cassette.yaml +++ b/scaleway/testdata/data-source-vpc-public-gateway-dhcp-reservation-static.cassette.yaml @@ -2,18 +2,18 @@ version: 1 interactions: - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"192.168.1.0/24","address":null,"pool_low":null,"pool_high":null,"enable_dynamic":null,"valid_lifetime":null,"renew_timer":null,"rebind_timer":null,"push_default_route":null,"push_dns_server":null,"dns_servers_override":null,"dns_search":null,"dns_local_name":null}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"192.168.1.0/24","address":null,"pool_low":null,"pool_high":null,"enable_dynamic":null,"valid_lifetime":null,"renew_timer":null,"rebind_timer":null,"push_default_route":null,"push_dns_server":null,"dns_servers_override":null,"dns_search":null,"dns_local_name":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps method: POST response: - body: '{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"address":"192.168.1.1","created_at":"2023-10-27T09:01:42.479163Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:42.479163Z","valid_lifetime":"3600s","zone":"fr-par-1"}' headers: Content-Length: - "586" @@ -22,7 +22,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:00 GMT + - Fri, 27 Oct 2023 09:01:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ce646b4-959c-441c-bc66-fb328b3e88cb + - 493f7d8b-4a8c-4fbb-a2fe-a5afc6945bf3 status: 200 OK code: 200 duration: "" @@ -41,12 +41,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/060f8446-d73c-4c83-a8a1-a17a1d32bc17 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c method: GET response: - body: '{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"address":"192.168.1.1","created_at":"2023-10-27T09:01:42.479163Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:42.479163Z","valid_lifetime":"3600s","zone":"fr-par-1"}' headers: Content-Length: - "586" @@ -55,7 +55,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:00 GMT + - Fri, 27 Oct 2023 09:01:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,23 +65,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65e3099c-ab31-4063-81d5-b0e539a3ca80 + - ffb4bb06-f125-42aa-8a7c-5947315acc10 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-sg-nostalgic-jang","project":"105bdce1-64c0-48ab-899d-868455867ecf","stateful":true,"inbound_default_policy":"drop","outbound_default_policy":"accept","enable_default_security":true}' + body: '{"name":"tf-sg-quirky-faraday","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","stateful":true,"inbound_default_policy":"drop","outbound_default_policy":"accept","enable_default_security":true}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups method: POST response: - body: '{"security_group":{"creation_date":"2023-10-23T06:49:00.512612+00:00","description":null,"enable_default_security":true,"id":"fa78263d-512e-45c9-aba0-3e6aa6e527be","inbound_default_policy":"drop","modification_date":"2023-10-23T06:49:00.512612+00:00","name":"tf-sg-nostalgic-jang","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2023-10-27T09:01:42.549979+00:00","description":null,"enable_default_security":true,"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","inbound_default_policy":"drop","modification_date":"2023-10-27T09:01:42.549979+00:00","name":"tf-sg-quirky-faraday","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "582" @@ -90,9 +90,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:00 GMT + - Fri, 27 Oct 2023 09:01:42 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/fa78263d-512e-45c9-aba0-3e6aa6e527be + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/89c3704f-8b48-43fa-b54a-78c1718d1557 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -102,7 +102,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 081ccaf8-061d-4a42-a81d-fb8150491df4 + - 14f59fc6-8962-4653-80f0-05e656b69f51 status: 201 Created code: 201 duration: "" @@ -111,12 +111,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/fa78263d-512e-45c9-aba0-3e6aa6e527be + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/89c3704f-8b48-43fa-b54a-78c1718d1557 method: GET response: - body: '{"security_group":{"creation_date":"2023-10-23T06:49:00.512612+00:00","description":null,"enable_default_security":true,"id":"fa78263d-512e-45c9-aba0-3e6aa6e527be","inbound_default_policy":"drop","modification_date":"2023-10-23T06:49:00.512612+00:00","name":"tf-sg-nostalgic-jang","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2023-10-27T09:01:42.549979+00:00","description":null,"enable_default_security":true,"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","inbound_default_policy":"drop","modification_date":"2023-10-27T09:01:42.549979+00:00","name":"tf-sg-quirky-faraday","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "582" @@ -125,7 +125,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:00 GMT + - Fri, 27 Oct 2023 09:01:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -135,23 +135,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9b103b6-f9cd-4a68-a628-6a62324dc53b + - b9778141-a50c-46c5-b44f-73f38a0a2e6f status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-sg-nostalgic-jang","tags":[],"creation_date":"2023-10-23T06:49:00.512612Z","modification_date":"2023-10-23T06:49:00.512612Z","description":"","enable_default_security":true,"inbound_default_policy":"drop","outbound_default_policy":"accept","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"project_default":false,"servers":[],"stateful":true}' + body: '{"name":"tf-sg-quirky-faraday","tags":[],"creation_date":"2023-10-27T09:01:42.549979Z","modification_date":"2023-10-27T09:01:42.549979Z","description":"","enable_default_security":true,"inbound_default_policy":"drop","outbound_default_policy":"accept","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"project_default":false,"servers":[],"stateful":true}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/fa78263d-512e-45c9-aba0-3e6aa6e527be + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/89c3704f-8b48-43fa-b54a-78c1718d1557 method: PUT response: - body: '{"security_group":{"creation_date":"2023-10-23T06:49:00.512612+00:00","description":"","enable_default_security":true,"id":"fa78263d-512e-45c9-aba0-3e6aa6e527be","inbound_default_policy":"drop","modification_date":"2023-10-23T06:49:00.682907+00:00","name":"tf-sg-nostalgic-jang","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2023-10-27T09:01:42.549979+00:00","description":"","enable_default_security":true,"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","inbound_default_policy":"drop","modification_date":"2023-10-27T09:01:42.665970+00:00","name":"tf-sg-quirky-faraday","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "580" @@ -160,7 +160,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:01 GMT + - Fri, 27 Oct 2023 09:01:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -170,23 +170,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23e40523-fa29-44b7-83ca-ed468bd8fbf7 + - 6bdba3fe-231c-4adf-a22d-3e57f7f6808b status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":null}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips method: POST response: - body: '{"address":"51.158.114.104","created_at":"2023-10-23T06:49:00.957190Z","gateway_id":null,"id":"a7332263-ec06-45f0-8553-608b5579a3e3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"104-114-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-23T06:49:00.957190Z","zone":"fr-par-1"}' + body: '{"address":"163.172.134.68","created_at":"2023-10-27T09:01:43.051349Z","gateway_id":null,"id":"6cf1b756-e3a7-4023-ab09-189ee80e5c47","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"68-134-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:01:43.051349Z","zone":"fr-par-1"}' headers: Content-Length: - "369" @@ -195,7 +195,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:00 GMT + - Fri, 27 Oct 2023 09:01:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -205,7 +205,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8dbce7a-4d38-40af-a375-e4b1d8e4d58d + - dd0b556a-ed9f-4b33-91cc-5fe688a9fd3f status: 200 OK code: 200 duration: "" @@ -214,12 +214,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/a7332263-ec06-45f0-8553-608b5579a3e3 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/6cf1b756-e3a7-4023-ab09-189ee80e5c47 method: GET response: - body: '{"address":"51.158.114.104","created_at":"2023-10-23T06:49:00.957190Z","gateway_id":null,"id":"a7332263-ec06-45f0-8553-608b5579a3e3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"104-114-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-23T06:49:00.957190Z","zone":"fr-par-1"}' + body: '{"address":"163.172.134.68","created_at":"2023-10-27T09:01:43.051349Z","gateway_id":null,"id":"6cf1b756-e3a7-4023-ab09-189ee80e5c47","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"68-134-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:01:43.051349Z","zone":"fr-par-1"}' headers: Content-Length: - "369" @@ -228,7 +228,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:01 GMT + - Fri, 27 Oct 2023 09:01:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -238,32 +238,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e757a4e-d2e7-4006-9575-00d4195b2f76 + - 9c0149e9-2ea2-44b5-8223-813b8c27d532 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Static","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":null,"subnets":null,"vpc_id":null}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"foobar","tags":null,"type":"VPC-GW-S","upstream_dns_servers":null,"ip_id":"6cf1b756-e3a7-4023-ab09-189ee80e5c47","enable_smtp":false,"enable_bastion":false,"bastion_port":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways method: POST response: - body: '{"created_at":"2023-10-23T06:49:00.430024Z","dhcp_enabled":true,"id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","name":"TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Static","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-23T06:49:00.430024Z","id":"867c0a14-8105-4a52-887b-0b1dd00b21a0","subnet":"172.16.152.0/22","updated_at":"2023-10-23T06:49:00.430024Z"},{"created_at":"2023-10-23T06:49:00.430024Z","id":"d008ebf0-c1a0-40c5-a489-4b108473f177","subnet":"fd5f:519c:6d46:a78a::/64","updated_at":"2023-10-23T06:49:00.430024Z"}],"tags":[],"updated_at":"2023-10-23T06:49:00.430024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:01:43.234821Z","gateway_networks":[],"id":"4f732be2-2bec-4461-bbbe-b947cc738b01","ip":{"address":"163.172.134.68","created_at":"2023-10-27T09:01:43.051349Z","gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"6cf1b756-e3a7-4023-ab09-189ee80e5c47","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"68-134-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:01:43.051349Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:01:43.234821Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' headers: Content-Length: - - "765" + - "971" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:01 GMT + - Fri, 27 Oct 2023 09:01:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -273,7 +273,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 033b07c5-9e12-4558-a427-38d27be2fc84 + - a645e621-aca2-4e38-a59b-2d726e38b471 status: 200 OK code: 200 duration: "" @@ -282,21 +282,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/41c8b3b2-3199-44a5-a72c-b542c635bf8f + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4f732be2-2bec-4461-bbbe-b947cc738b01 method: GET response: - body: '{"created_at":"2023-10-23T06:49:00.430024Z","dhcp_enabled":true,"id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","name":"TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Static","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-23T06:49:00.430024Z","id":"867c0a14-8105-4a52-887b-0b1dd00b21a0","subnet":"172.16.152.0/22","updated_at":"2023-10-23T06:49:00.430024Z"},{"created_at":"2023-10-23T06:49:00.430024Z","id":"d008ebf0-c1a0-40c5-a489-4b108473f177","subnet":"fd5f:519c:6d46:a78a::/64","updated_at":"2023-10-23T06:49:00.430024Z"}],"tags":[],"updated_at":"2023-10-23T06:49:00.430024Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:01:43.234821Z","gateway_networks":[],"id":"4f732be2-2bec-4461-bbbe-b947cc738b01","ip":{"address":"163.172.134.68","created_at":"2023-10-27T09:01:43.051349Z","gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"6cf1b756-e3a7-4023-ab09-189ee80e5c47","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"68-134-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:01:43.051349Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:01:43.274605Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "765" + - "974" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:01 GMT + - Fri, 27 Oct 2023 09:01:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -306,32 +306,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee6e400d-2181-4659-8eef-44a6bf00ce2e + - 1aa2ab70-7dbb-473f-b0ce-a978d9954be5 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"foobar","tags":null,"type":"VPC-GW-S","upstream_dns_servers":null,"ip_id":"a7332263-ec06-45f0-8553-608b5579a3e3","enable_smtp":false,"enable_bastion":false,"bastion_port":null}' + body: '{"rules":[{"id":null,"action":"accept","protocol":"TCP","direction":"inbound","ip_range":"0.0.0.0/0","dest_port_from":22,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"}]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/89c3704f-8b48-43fa-b54a-78c1718d1557/rules + method: PUT response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-23T06:49:01.203511Z","gateway_networks":[],"id":"2d37d34b-7e78-4592-b39f-6adb62147e09","ip":{"address":"51.158.114.104","created_at":"2023-10-23T06:49:00.957190Z","gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"a7332263-ec06-45f0-8553-608b5579a3e3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"104-114-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-23T06:49:00.957190Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-23T06:49:01.203511Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"58909be7-d17c-4ac8-9eb3-23d5fc58abc5","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"25680235-108b-4bbc-8e25-114303d950bd","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"4a31b633-118e-4900-bd52-facf1085fc8d","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"e7dd28e8-3747-4c7c-9a4f-35ae3f0ae2cd","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"f37d9e7c-8ed7-4e0f-baff-7f5e7ede0baf","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"68054851-54e3-46c9-9cd7-83219751248b","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"6c11ee3b-eb12-4796-9aab-f95c9426c161","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - - "971" + - "1792" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:01 GMT + - Fri, 27 Oct 2023 09:01:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -341,7 +341,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97e25b02-b6ef-4ed2-9304-dfdae9ff9556 + - e9c78ebb-8b37-4b33-b73a-1d55959781b1 status: 200 OK code: 200 duration: "" @@ -350,21 +350,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2d37d34b-7e78-4592-b39f-6adb62147e09 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/89c3704f-8b48-43fa-b54a-78c1718d1557 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-23T06:49:01.203511Z","gateway_networks":[],"id":"2d37d34b-7e78-4592-b39f-6adb62147e09","ip":{"address":"51.158.114.104","created_at":"2023-10-23T06:49:00.957190Z","gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"a7332263-ec06-45f0-8553-608b5579a3e3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"104-114-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-23T06:49:00.957190Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-23T06:49:01.257097Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"security_group":{"creation_date":"2023-10-27T09:01:42.549979+00:00","description":"","enable_default_security":true,"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","inbound_default_policy":"drop","modification_date":"2023-10-27T09:01:43.351700+00:00","name":"tf-sg-quirky-faraday","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "974" + - "582" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:01 GMT + - Fri, 27 Oct 2023 09:01:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -374,23 +374,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ba935dc-56c4-4e70-8d17-9b1de03024c7 + - 418864be-7fc6-4410-8204-bdafd143a6f4 status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"id":null,"action":"accept","protocol":"TCP","direction":"inbound","ip_range":"0.0.0.0/0","dest_port_from":22,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"}]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/fa78263d-512e-45c9-aba0-3e6aa6e527be/rules - method: PUT + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/89c3704f-8b48-43fa-b54a-78c1718d1557/rules?page=1 + method: GET response: - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"58909be7-d17c-4ac8-9eb3-23d5fc58abc5","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"25680235-108b-4bbc-8e25-114303d950bd","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"4a31b633-118e-4900-bd52-facf1085fc8d","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"e7dd28e8-3747-4c7c-9a4f-35ae3f0ae2cd","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"f37d9e7c-8ed7-4e0f-baff-7f5e7ede0baf","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"68054851-54e3-46c9-9cd7-83219751248b","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"29c3f701-4721-40c7-91c4-9a9fbad22a75","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"58909be7-d17c-4ac8-9eb3-23d5fc58abc5","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"25680235-108b-4bbc-8e25-114303d950bd","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"4a31b633-118e-4900-bd52-facf1085fc8d","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"e7dd28e8-3747-4c7c-9a4f-35ae3f0ae2cd","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"f37d9e7c-8ed7-4e0f-baff-7f5e7ede0baf","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"68054851-54e3-46c9-9cd7-83219751248b","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"6c11ee3b-eb12-4796-9aab-f95c9426c161","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1792" @@ -399,7 +397,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:01 GMT + - Fri, 27 Oct 2023 09:01:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -409,30 +407,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc31ea95-0c10-490d-8c24-698cb306a770 + - 0f2eed35-0c1d-4605-85d1-020894f4455a status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"name":"TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Static","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null,"subnets":null,"vpc_id":null}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/fa78263d-512e-45c9-aba0-3e6aa6e527be - method: GET + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: - body: '{"security_group":{"creation_date":"2023-10-23T06:49:00.512612+00:00","description":"","enable_default_security":true,"id":"fa78263d-512e-45c9-aba0-3e6aa6e527be","inbound_default_policy":"drop","modification_date":"2023-10-23T06:49:01.448209+00:00","name":"tf-sg-nostalgic-jang","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2023-10-27T09:01:42.481800Z","dhcp_enabled":true,"id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","name":"TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Static","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T09:01:42.481800Z","id":"d5773e42-8cf7-4c5a-b587-ba8ec4dc928e","subnet":"172.16.28.0/22","updated_at":"2023-10-27T09:01:42.481800Z"},{"created_at":"2023-10-27T09:01:42.481800Z","id":"457175c5-7afe-45e2-9aca-2170fd6b439c","subnet":"fd46:78ab:30b8:701a::/64","updated_at":"2023-10-27T09:01:42.481800Z"}],"tags":[],"updated_at":"2023-10-27T09:01:42.481800Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "582" + - "764" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:01 GMT + - Fri, 27 Oct 2023 09:01:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -442,7 +442,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d426fa30-842c-4a76-8fe4-1459c5320955 + - a3aec7dd-5f0f-46bd-ac49-768109c378db status: 200 OK code: 200 duration: "" @@ -451,21 +451,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/fa78263d-512e-45c9-aba0-3e6aa6e527be/rules?page=1 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bd471267-f3fa-4cb3-8b37-7aa3d08a5f36 method: GET response: - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"58909be7-d17c-4ac8-9eb3-23d5fc58abc5","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"25680235-108b-4bbc-8e25-114303d950bd","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"4a31b633-118e-4900-bd52-facf1085fc8d","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"e7dd28e8-3747-4c7c-9a4f-35ae3f0ae2cd","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"f37d9e7c-8ed7-4e0f-baff-7f5e7ede0baf","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"68054851-54e3-46c9-9cd7-83219751248b","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"29c3f701-4721-40c7-91c4-9a9fbad22a75","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"created_at":"2023-10-27T09:01:42.481800Z","dhcp_enabled":true,"id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","name":"TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Static","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T09:01:42.481800Z","id":"d5773e42-8cf7-4c5a-b587-ba8ec4dc928e","subnet":"172.16.28.0/22","updated_at":"2023-10-27T09:01:42.481800Z"},{"created_at":"2023-10-27T09:01:42.481800Z","id":"457175c5-7afe-45e2-9aca-2170fd6b439c","subnet":"fd46:78ab:30b8:701a::/64","updated_at":"2023-10-27T09:01:42.481800Z"}],"tags":[],"updated_at":"2023-10-27T09:01:42.481800Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1792" + - "764" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:01 GMT + - Fri, 27 Oct 2023 09:01:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -475,7 +475,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62ca4baa-8fdc-415c-8c96-c0a0d1cea58e + - 62260acf-02e9-4dce-afed-34c5d01ad3a8 status: 200 OK code: 200 duration: "" @@ -484,7 +484,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=created_at_asc&type=instance_local&zone=fr-par-1 method: GET @@ -498,7 +498,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:01 GMT + - Fri, 27 Oct 2023 09:01:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -508,7 +508,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af8b780d-c055-4407-8a3f-a66f8fa96221 + - 1f226abd-b5a2-4dac-bcd7-368ae627cea4 status: 200 OK code: 200 duration: "" @@ -517,7 +517,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET @@ -531,7 +531,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:01 GMT + - Fri, 27 Oct 2023 09:01:44 GMT Link: - ; rel="next",; rel="last" @@ -544,7 +544,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9a5c3ef-6264-4eb0-a6db-2ce9820c8309 + - bc17b60e-6b6d-4d75-8324-97a58e5d7593 X-Total-Count: - "56" status: 200 OK @@ -555,7 +555,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET @@ -569,7 +569,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:01 GMT + - Fri, 27 Oct 2023 09:01:44 GMT Link: - ; rel="first",; rel="previous",; rel="last" @@ -582,41 +582,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6db93c11-978d-4081-824e-297077fd8d7b + - ae7187ca-d2bd-4724-a743-fa0a62e253a8 X-Total-Count: - "56" status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-srv-intelligent-wu","dynamic_ip_required":false,"routed_ip_enabled":false,"commercial_type":"DEV1-S","image":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","security_group":"fa78263d-512e-45c9-aba0-3e6aa6e527be"}' + body: '{"name":"tf-srv-wonderful-heisenberg","dynamic_ip_required":false,"routed_ip_enabled":false,"commercial_type":"DEV1-S","image":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","security_group":"89c3704f-8b48-43fa-b54a-78c1718d1557"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-23T06:49:02.173512+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-intelligent-wu","id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:01:44.938021+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-wonderful-heisenberg","id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:03:d7","maintenances":[],"modification_date":"2023-10-23T06:49:02.173512+00:00","name":"tf-srv-intelligent-wu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"fa78263d-512e-45c9-aba0-3e6aa6e527be","name":"tf-sg-nostalgic-jang"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-23T06:49:02.173512+00:00","export_uri":null,"id":"76b13f47-0510-4cf0-8f21-ca8a00e26062","modification_date":"2023-10-23T06:49:02.173512+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","name":"tf-srv-intelligent-wu"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:bd:31","maintenances":[],"modification_date":"2023-10-27T09:01:44.938021+00:00","name":"tf-srv-wonderful-heisenberg","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","name":"tf-sg-quirky-faraday"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:01:44.938021+00:00","export_uri":null,"id":"164fad99-13b2-44e8-ba8c-883cf6f09beb","modification_date":"2023-10-27T09:01:44.938021+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","name":"tf-srv-wonderful-heisenberg"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2643" + - "2661" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:02 GMT + - Fri, 27 Oct 2023 09:01:45 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -626,7 +626,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb5fa9fb-b31f-4840-8e16-6d32ea38ef7c + - edcd66c4-2d6a-465c-9791-ce9d1a5c2ae4 status: 201 Created code: 201 duration: "" @@ -635,26 +635,26 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152 method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-23T06:49:02.173512+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-intelligent-wu","id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:01:44.938021+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-wonderful-heisenberg","id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:03:d7","maintenances":[],"modification_date":"2023-10-23T06:49:02.173512+00:00","name":"tf-srv-intelligent-wu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"fa78263d-512e-45c9-aba0-3e6aa6e527be","name":"tf-sg-nostalgic-jang"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-23T06:49:02.173512+00:00","export_uri":null,"id":"76b13f47-0510-4cf0-8f21-ca8a00e26062","modification_date":"2023-10-23T06:49:02.173512+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","name":"tf-srv-intelligent-wu"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:bd:31","maintenances":[],"modification_date":"2023-10-27T09:01:44.938021+00:00","name":"tf-srv-wonderful-heisenberg","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","name":"tf-sg-quirky-faraday"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:01:44.938021+00:00","export_uri":null,"id":"164fad99-13b2-44e8-ba8c-883cf6f09beb","modification_date":"2023-10-27T09:01:44.938021+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","name":"tf-srv-wonderful-heisenberg"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2643" + - "2661" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:02 GMT + - Fri, 27 Oct 2023 09:01:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -664,7 +664,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c23e9ed4-36f1-420a-813f-6917b8873327 + - f26117ec-cd22-45e3-b09e-9d490b4203db status: 200 OK code: 200 duration: "" @@ -673,26 +673,26 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152 method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-23T06:49:02.173512+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-intelligent-wu","id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:01:44.938021+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-wonderful-heisenberg","id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:03:d7","maintenances":[],"modification_date":"2023-10-23T06:49:02.173512+00:00","name":"tf-srv-intelligent-wu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"fa78263d-512e-45c9-aba0-3e6aa6e527be","name":"tf-sg-nostalgic-jang"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-23T06:49:02.173512+00:00","export_uri":null,"id":"76b13f47-0510-4cf0-8f21-ca8a00e26062","modification_date":"2023-10-23T06:49:02.173512+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","name":"tf-srv-intelligent-wu"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:bd:31","maintenances":[],"modification_date":"2023-10-27T09:01:44.938021+00:00","name":"tf-srv-wonderful-heisenberg","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","name":"tf-sg-quirky-faraday"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:01:44.938021+00:00","export_uri":null,"id":"164fad99-13b2-44e8-ba8c-883cf6f09beb","modification_date":"2023-10-27T09:01:44.938021+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","name":"tf-srv-wonderful-heisenberg"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2643" + - "2661" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:03 GMT + - Fri, 27 Oct 2023 09:01:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -702,7 +702,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 568c2d01-175a-47ed-b561-fc135e7b1a91 + - 120b704f-2342-4530-93f2-447ed6e0b4a8 status: 200 OK code: 200 duration: "" @@ -713,12 +713,12 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152/action method: POST response: - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5/action","href_result":"/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5","id":"c263f139-5b7e-442b-a70c-215f35a1366d","started_at":"2023-10-23T06:49:03.899526+00:00","status":"pending","terminated_at":null}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152/action","href_result":"/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","id":"14da597b-8dfe-42fe-b0f8-f045cc7e6412","started_at":"2023-10-27T09:01:45.727298+00:00","status":"pending","terminated_at":null}}' headers: Content-Length: - "322" @@ -727,9 +727,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:03 GMT + - Fri, 27 Oct 2023 09:01:45 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c263f139-5b7e-442b-a70c-215f35a1366d + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/14da597b-8dfe-42fe-b0f8-f045cc7e6412 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -739,7 +739,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de322978-d095-431e-ace3-6760e6b16a59 + - 270680bc-9b23-4513-bdbc-6c14f80d9fad status: 202 Accepted code: 202 duration: "" @@ -748,27 +748,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-23T06:49:02.173512+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-intelligent-wu","id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:01:44.938021+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-wonderful-heisenberg","id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:03:d7","maintenances":[],"modification_date":"2023-10-23T06:49:03.399997+00:00","name":"tf-srv-intelligent-wu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"fa78263d-512e-45c9-aba0-3e6aa6e527be","name":"tf-sg-nostalgic-jang"},"state":"starting","state_detail":"allocating - node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-23T06:49:02.173512+00:00","export_uri":null,"id":"76b13f47-0510-4cf0-8f21-ca8a00e26062","modification_date":"2023-10-23T06:49:02.173512+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","name":"tf-srv-intelligent-wu"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:bd:31","maintenances":[],"modification_date":"2023-10-27T09:01:45.449362+00:00","name":"tf-srv-wonderful-heisenberg","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","name":"tf-sg-quirky-faraday"},"state":"starting","state_detail":"allocating + node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:01:44.938021+00:00","export_uri":null,"id":"164fad99-13b2-44e8-ba8c-883cf6f09beb","modification_date":"2023-10-27T09:01:44.938021+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","name":"tf-srv-wonderful-heisenberg"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2665" + - "2683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:04 GMT + - Fri, 27 Oct 2023 09:01:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -778,7 +778,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37eb90b5-6ae5-45b7-805d-969400f245b0 + - 9db49d03-82d8-49a6-bddc-e7160872e012 status: 200 OK code: 200 duration: "" @@ -787,12 +787,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2d37d34b-7e78-4592-b39f-6adb62147e09 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4f732be2-2bec-4461-bbbe-b947cc738b01 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-23T06:49:01.203511Z","gateway_networks":[],"id":"2d37d34b-7e78-4592-b39f-6adb62147e09","ip":{"address":"51.158.114.104","created_at":"2023-10-23T06:49:00.957190Z","gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"a7332263-ec06-45f0-8553-608b5579a3e3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"104-114-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-23T06:49:00.957190Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-23T06:49:01.913428Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:01:43.234821Z","gateway_networks":[],"id":"4f732be2-2bec-4461-bbbe-b947cc738b01","ip":{"address":"163.172.134.68","created_at":"2023-10-27T09:01:43.051349Z","gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"6cf1b756-e3a7-4023-ab09-189ee80e5c47","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"68-134-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:01:43.051349Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:01:43.870919Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "971" @@ -801,7 +801,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:06 GMT + - Fri, 27 Oct 2023 09:01:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -811,7 +811,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7764dc6e-99b4-4ba1-b29a-ed8f74e7f402 + - 656831e6-1eb0-4a2d-be17-92915dc794f2 status: 200 OK code: 200 duration: "" @@ -820,12 +820,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2d37d34b-7e78-4592-b39f-6adb62147e09 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4f732be2-2bec-4461-bbbe-b947cc738b01 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-23T06:49:01.203511Z","gateway_networks":[],"id":"2d37d34b-7e78-4592-b39f-6adb62147e09","ip":{"address":"51.158.114.104","created_at":"2023-10-23T06:49:00.957190Z","gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"a7332263-ec06-45f0-8553-608b5579a3e3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"104-114-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-23T06:49:00.957190Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-23T06:49:01.913428Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:01:43.234821Z","gateway_networks":[],"id":"4f732be2-2bec-4461-bbbe-b947cc738b01","ip":{"address":"163.172.134.68","created_at":"2023-10-27T09:01:43.051349Z","gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"6cf1b756-e3a7-4023-ab09-189ee80e5c47","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"68-134-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:01:43.051349Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:01:43.870919Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "971" @@ -834,7 +834,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:06 GMT + - Fri, 27 Oct 2023 09:01:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -844,7 +844,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df9e6751-0e9a-413b-83cf-7c43a023cbeb + - a63ae961-f49f-4a0e-9c24-014627512ad9 status: 200 OK code: 200 duration: "" @@ -853,12 +853,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2d37d34b-7e78-4592-b39f-6adb62147e09 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4f732be2-2bec-4461-bbbe-b947cc738b01 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-23T06:49:01.203511Z","gateway_networks":[],"id":"2d37d34b-7e78-4592-b39f-6adb62147e09","ip":{"address":"51.158.114.104","created_at":"2023-10-23T06:49:00.957190Z","gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"a7332263-ec06-45f0-8553-608b5579a3e3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"104-114-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-23T06:49:00.957190Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-23T06:49:01.913428Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:01:43.234821Z","gateway_networks":[],"id":"4f732be2-2bec-4461-bbbe-b947cc738b01","ip":{"address":"163.172.134.68","created_at":"2023-10-27T09:01:43.051349Z","gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"6cf1b756-e3a7-4023-ab09-189ee80e5c47","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"68-134-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:01:43.051349Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:01:43.870919Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "971" @@ -867,7 +867,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:06 GMT + - Fri, 27 Oct 2023 09:01:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -877,23 +877,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f40406eb-fd2b-4a10-b0d0-86c21860e4af + - df486feb-d44b-4089-9683-3e1318daa04d status: 200 OK code: 200 duration: "" - request: - body: '{"gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","enable_masquerade":true,"enable_dhcp":true,"dhcp_id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17"}' + body: '{"gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","enable_masquerade":true,"enable_dhcp":true,"dhcp_id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks method: POST response: - body: '{"address":null,"created_at":"2023-10-23T06:49:07.693022Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","ipam_config":null,"mac_address":null,"private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","status":"created","updated_at":"2023-10-23T06:49:07.693022Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T09:01:50.606736Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T09:01:42.479163Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:42.479163Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","ipam_config":null,"mac_address":null,"private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","status":"created","updated_at":"2023-10-27T09:01:50.606736Z","zone":"fr-par-1"}' headers: Content-Length: - "983" @@ -902,7 +902,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:07 GMT + - Fri, 27 Oct 2023 09:01:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -912,7 +912,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c9b6a4e-32ae-41ff-85dd-013fc2d684b8 + - d854ec6e-bc53-4f9b-9ce9-3a9463d888da status: 200 OK code: 200 duration: "" @@ -921,12 +921,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2d37d34b-7e78-4592-b39f-6adb62147e09 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4f732be2-2bec-4461-bbbe-b947cc738b01 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-23T06:49:01.203511Z","gateway_networks":[{"address":null,"created_at":"2023-10-23T06:49:07.693022Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","ipam_config":null,"mac_address":null,"private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","status":"created","updated_at":"2023-10-23T06:49:07.693022Z","zone":"fr-par-1"}],"id":"2d37d34b-7e78-4592-b39f-6adb62147e09","ip":{"address":"51.158.114.104","created_at":"2023-10-23T06:49:00.957190Z","gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"a7332263-ec06-45f0-8553-608b5579a3e3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"104-114-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-23T06:49:00.957190Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-23T06:49:07.912605Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:01:43.234821Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T09:01:50.606736Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T09:01:42.479163Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:42.479163Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","ipam_config":null,"mac_address":null,"private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","status":"created","updated_at":"2023-10-27T09:01:50.606736Z","zone":"fr-par-1"}],"id":"4f732be2-2bec-4461-bbbe-b947cc738b01","ip":{"address":"163.172.134.68","created_at":"2023-10-27T09:01:43.051349Z","gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"6cf1b756-e3a7-4023-ab09-189ee80e5c47","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"68-134-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:01:43.051349Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:01:50.751111Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "1957" @@ -935,7 +935,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:07 GMT + - Fri, 27 Oct 2023 09:01:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -945,7 +945,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0dfc2a5c-f2b1-43a9-8e66-cdfa32df77b4 + - ac3b678e-b383-4279-b242-7447e987aecd status: 200 OK code: 200 duration: "" @@ -954,27 +954,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-23T06:49:02.173512+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-intelligent-wu","id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:01:44.938021+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-wonderful-heisenberg","id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1402","node_id":"25","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:03:d7","maintenances":[],"modification_date":"2023-10-23T06:49:03.399997+00:00","name":"tf-srv-intelligent-wu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.70.54.49","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"fa78263d-512e-45c9-aba0-3e6aa6e527be","name":"tf-sg-nostalgic-jang"},"state":"starting","state_detail":"provisioning - node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-23T06:49:02.173512+00:00","export_uri":null,"id":"76b13f47-0510-4cf0-8f21-ca8a00e26062","modification_date":"2023-10-23T06:49:02.173512+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","name":"tf-srv-intelligent-wu"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"101","node_id":"7","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bd:31","maintenances":[],"modification_date":"2023-10-27T09:01:45.449362+00:00","name":"tf-srv-wonderful-heisenberg","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.80.13","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","name":"tf-sg-quirky-faraday"},"state":"starting","state_detail":"provisioning + node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:01:44.938021+00:00","export_uri":null,"id":"164fad99-13b2-44e8-ba8c-883cf6f09beb","modification_date":"2023-10-27T09:01:44.938021+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","name":"tf-srv-wonderful-heisenberg"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2774" + - "2790" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:09 GMT + - Fri, 27 Oct 2023 09:01:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -984,7 +984,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba697219-e33f-4dfe-b8cf-b55023f44794 + - 1c19293c-7d42-4a99-85c1-b149968c366c status: 200 OK code: 200 duration: "" @@ -993,60 +993,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2d37d34b-7e78-4592-b39f-6adb62147e09 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4f732be2-2bec-4461-bbbe-b947cc738b01 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-23T06:49:01.203511Z","gateway_networks":[{"address":null,"created_at":"2023-10-23T06:49:07.693022Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","ipam_config":null,"mac_address":null,"private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","status":"created","updated_at":"2023-10-23T06:49:07.693022Z","zone":"fr-par-1"}],"id":"2d37d34b-7e78-4592-b39f-6adb62147e09","ip":{"address":"51.158.114.104","created_at":"2023-10-23T06:49:00.957190Z","gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"a7332263-ec06-45f0-8553-608b5579a3e3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"104-114-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-23T06:49:00.957190Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-23T06:49:07.912605Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' - headers: - Content-Length: - - "1957" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 23 Oct 2023 06:49:12 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3402ebb9-b3f6-478f-a5f4-562790d6971d - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5 - method: GET - response: - body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON - scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-23T06:49:02.173512+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-intelligent-wu","id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1402","node_id":"25","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:03:d7","maintenances":[],"modification_date":"2023-10-23T06:49:03.399997+00:00","name":"tf-srv-intelligent-wu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.70.54.49","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"fa78263d-512e-45c9-aba0-3e6aa6e527be","name":"tf-sg-nostalgic-jang"},"state":"starting","state_detail":"provisioning - node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-23T06:49:02.173512+00:00","export_uri":null,"id":"76b13f47-0510-4cf0-8f21-ca8a00e26062","modification_date":"2023-10-23T06:49:02.173512+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","name":"tf-srv-intelligent-wu"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:01:43.234821Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T09:01:50.606736Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T09:01:42.479163Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:42.479163Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","ipam_config":null,"mac_address":"02:00:00:14:74:05","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","status":"ready","updated_at":"2023-10-27T09:01:54.861866Z","zone":"fr-par-1"}],"id":"4f732be2-2bec-4461-bbbe-b947cc738b01","ip":{"address":"163.172.134.68","created_at":"2023-10-27T09:01:43.051349Z","gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"6cf1b756-e3a7-4023-ab09-189ee80e5c47","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"68-134-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:01:43.051349Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:01:55.050044Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "2774" + - "1966" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:14 GMT + - Fri, 27 Oct 2023 09:01:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1056,7 +1017,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16921602-f8ca-40cf-97e8-751f1f98b668 + - b6da8e32-31ce-4435-bd6e-dee219215723 status: 200 OK code: 200 duration: "" @@ -1065,21 +1026,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2d37d34b-7e78-4592-b39f-6adb62147e09 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/f5c121fb-bc6e-4282-8c9c-2433130e4b0d method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-23T06:49:01.203511Z","gateway_networks":[{"address":null,"created_at":"2023-10-23T06:49:07.693022Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","ipam_config":null,"mac_address":"02:00:00:14:5E:C0","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","status":"ready","updated_at":"2023-10-23T06:49:14.785590Z","zone":"fr-par-1"}],"id":"2d37d34b-7e78-4592-b39f-6adb62147e09","ip":{"address":"51.158.114.104","created_at":"2023-10-23T06:49:00.957190Z","gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"a7332263-ec06-45f0-8553-608b5579a3e3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"104-114-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-23T06:49:00.957190Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-23T06:49:14.933740Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T09:01:50.606736Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T09:01:42.479163Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:42.479163Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","ipam_config":null,"mac_address":"02:00:00:14:74:05","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","status":"ready","updated_at":"2023-10-27T09:01:54.861866Z","zone":"fr-par-1"}' headers: Content-Length: - - "1966" + - "996" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:18 GMT + - Fri, 27 Oct 2023 09:01:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1089,7 +1050,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1bd76b10-a018-417f-a524-7a1d32831a95 + - ffad5b4e-6c76-44ef-9bf3-13838d384f5d status: 200 OK code: 200 duration: "" @@ -1098,12 +1059,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/5eeb3b25-340f-4e06-b10d-1098a45470d8 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/f5c121fb-bc6e-4282-8c9c-2433130e4b0d method: GET response: - body: '{"address":null,"created_at":"2023-10-23T06:49:07.693022Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","ipam_config":null,"mac_address":"02:00:00:14:5E:C0","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","status":"ready","updated_at":"2023-10-23T06:49:14.785590Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T09:01:50.606736Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T09:01:42.479163Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:42.479163Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","ipam_config":null,"mac_address":"02:00:00:14:74:05","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","status":"ready","updated_at":"2023-10-27T09:01:54.861866Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -1112,7 +1073,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:18 GMT + - Fri, 27 Oct 2023 09:01:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1122,7 +1083,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5204f3d7-6329-4eff-b08b-68c52992113c + - c4966d0e-aae0-4c44-8be4-8daaba11f91f status: 200 OK code: 200 duration: "" @@ -1131,21 +1092,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/5eeb3b25-340f-4e06-b10d-1098a45470d8 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4f732be2-2bec-4461-bbbe-b947cc738b01 method: GET response: - body: '{"address":null,"created_at":"2023-10-23T06:49:07.693022Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","ipam_config":null,"mac_address":"02:00:00:14:5E:C0","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","status":"ready","updated_at":"2023-10-23T06:49:14.785590Z","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:01:43.234821Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T09:01:50.606736Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T09:01:42.479163Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:42.479163Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","ipam_config":null,"mac_address":"02:00:00:14:74:05","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","status":"ready","updated_at":"2023-10-27T09:01:54.861866Z","zone":"fr-par-1"}],"id":"4f732be2-2bec-4461-bbbe-b947cc738b01","ip":{"address":"163.172.134.68","created_at":"2023-10-27T09:01:43.051349Z","gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"6cf1b756-e3a7-4023-ab09-189ee80e5c47","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"68-134-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:01:43.051349Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:01:55.050044Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "996" + - "1966" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:18 GMT + - Fri, 27 Oct 2023 09:01:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1155,7 +1116,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8f401bc-f66e-4c8b-9220-6e20b4319d59 + - 42f61234-8433-4e55-9065-0f6ea666c2ae status: 200 OK code: 200 duration: "" @@ -1164,21 +1125,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2d37d34b-7e78-4592-b39f-6adb62147e09 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/f5c121fb-bc6e-4282-8c9c-2433130e4b0d method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-23T06:49:01.203511Z","gateway_networks":[{"address":null,"created_at":"2023-10-23T06:49:07.693022Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","ipam_config":null,"mac_address":"02:00:00:14:5E:C0","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","status":"ready","updated_at":"2023-10-23T06:49:14.785590Z","zone":"fr-par-1"}],"id":"2d37d34b-7e78-4592-b39f-6adb62147e09","ip":{"address":"51.158.114.104","created_at":"2023-10-23T06:49:00.957190Z","gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"a7332263-ec06-45f0-8553-608b5579a3e3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"104-114-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-23T06:49:00.957190Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-23T06:49:14.933740Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T09:01:50.606736Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T09:01:42.479163Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:42.479163Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","ipam_config":null,"mac_address":"02:00:00:14:74:05","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","status":"ready","updated_at":"2023-10-27T09:01:54.861866Z","zone":"fr-par-1"}' headers: Content-Length: - - "1966" + - "996" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:18 GMT + - Fri, 27 Oct 2023 09:01:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1188,7 +1149,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0dfbea4d-d0e7-43a4-a3b0-1158a660322b + - 05595516-3d67-4c32-a212-06f06f0f9a3e status: 200 OK code: 200 duration: "" @@ -1197,21 +1158,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/5eeb3b25-340f-4e06-b10d-1098a45470d8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152 method: GET response: - body: '{"address":null,"created_at":"2023-10-23T06:49:07.693022Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","ipam_config":null,"mac_address":"02:00:00:14:5E:C0","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","status":"ready","updated_at":"2023-10-23T06:49:14.785590Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON + scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:01:44.938021+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-wonderful-heisenberg","id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"101","node_id":"7","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bd:31","maintenances":[],"modification_date":"2023-10-27T09:01:45.449362+00:00","name":"tf-srv-wonderful-heisenberg","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.80.13","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","name":"tf-sg-quirky-faraday"},"state":"starting","state_detail":"provisioning + node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:01:44.938021+00:00","export_uri":null,"id":"164fad99-13b2-44e8-ba8c-883cf6f09beb","modification_date":"2023-10-27T09:01:44.938021+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","name":"tf-srv-wonderful-heisenberg"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "996" + - "2790" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:18 GMT + - Fri, 27 Oct 2023 09:01:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1221,7 +1188,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61505ae9-9066-4ff2-83ad-5cebff3ae77d + - 6d415338-1cf9-4b91-b855-ac20cf3bbaa3 status: 200 OK code: 200 duration: "" @@ -1230,27 +1197,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152 method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-23T06:49:02.173512+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-intelligent-wu","id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:01:44.938021+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-wonderful-heisenberg","id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1402","node_id":"25","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:03:d7","maintenances":[],"modification_date":"2023-10-23T06:49:15.994601+00:00","name":"tf-srv-intelligent-wu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.70.54.49","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"fa78263d-512e-45c9-aba0-3e6aa6e527be","name":"tf-sg-nostalgic-jang"},"state":"running","state_detail":"booting - kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-23T06:49:02.173512+00:00","export_uri":null,"id":"76b13f47-0510-4cf0-8f21-ca8a00e26062","modification_date":"2023-10-23T06:49:02.173512+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","name":"tf-srv-intelligent-wu"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"101","node_id":"7","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bd:31","maintenances":[],"modification_date":"2023-10-27T09:01:57.232719+00:00","name":"tf-srv-wonderful-heisenberg","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.80.13","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","name":"tf-sg-quirky-faraday"},"state":"running","state_detail":"booting + kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:01:44.938021+00:00","export_uri":null,"id":"164fad99-13b2-44e8-ba8c-883cf6f09beb","modification_date":"2023-10-27T09:01:44.938021+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","name":"tf-srv-wonderful-heisenberg"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2805" + - "2821" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:19 GMT + - Fri, 27 Oct 2023 09:02:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1260,7 +1227,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61a6092c-6f90-41fe-8d97-c41b1b3ccb21 + - 4ba76003-2d97-461c-a007-f44213c691ad status: 200 OK code: 200 duration: "" @@ -1269,21 +1236,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/41c8b3b2-3199-44a5-a72c-b542c635bf8f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bd471267-f3fa-4cb3-8b37-7aa3d08a5f36 method: GET response: - body: '{"created_at":"2023-10-23T06:49:00.430024Z","id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","name":"TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Static","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":["192.168.1.0/24","fd5f:519c:6d46:a78a::/64"],"tags":[],"updated_at":"2023-10-23T06:49:14.337043Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:01:42.481800Z","dhcp_enabled":true,"id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","name":"TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Static","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T09:01:42.481800Z","id":"d5773e42-8cf7-4c5a-b587-ba8ec4dc928e","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:48.855400Z"},{"created_at":"2023-10-27T09:01:42.481800Z","id":"457175c5-7afe-45e2-9aca-2170fd6b439c","subnet":"fd46:78ab:30b8:701a::/64","updated_at":"2023-10-27T09:01:48.860105Z"}],"tags":[],"updated_at":"2023-10-27T09:01:52.433710Z","vpc_id":"b10aaa94-0775-4467-ab81-8bab6d7c50c6"}' headers: Content-Length: - - "406" + - "764" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:19 GMT + - Fri, 27 Oct 2023 09:02:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1293,7 +1260,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b5510ec-a083-478a-be5b-8566f89ad347 + - 134ef5e8-e00e-4716-ba13-b32c7c4940c4 status: 200 OK code: 200 duration: "" @@ -1302,27 +1269,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152 method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-23T06:49:02.173512+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-intelligent-wu","id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:01:44.938021+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-wonderful-heisenberg","id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1402","node_id":"25","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:03:d7","maintenances":[],"modification_date":"2023-10-23T06:49:15.994601+00:00","name":"tf-srv-intelligent-wu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.70.54.49","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"fa78263d-512e-45c9-aba0-3e6aa6e527be","name":"tf-sg-nostalgic-jang"},"state":"running","state_detail":"booting - kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-23T06:49:02.173512+00:00","export_uri":null,"id":"76b13f47-0510-4cf0-8f21-ca8a00e26062","modification_date":"2023-10-23T06:49:02.173512+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","name":"tf-srv-intelligent-wu"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"101","node_id":"7","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bd:31","maintenances":[],"modification_date":"2023-10-27T09:01:57.232719+00:00","name":"tf-srv-wonderful-heisenberg","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.80.13","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","name":"tf-sg-quirky-faraday"},"state":"running","state_detail":"booting + kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:01:44.938021+00:00","export_uri":null,"id":"164fad99-13b2-44e8-ba8c-883cf6f09beb","modification_date":"2023-10-27T09:01:44.938021+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","name":"tf-srv-wonderful-heisenberg"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2805" + - "2821" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:19 GMT + - Fri, 27 Oct 2023 09:02:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1332,23 +1299,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0cecea42-dd29-4c4b-b908-ae88100480a4 + - d2798a80-3890-4b95-83a3-c2beddc22f2b status: 200 OK code: 200 duration: "" - request: - body: '{"private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f"}' + body: '{"private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152/private_nics method: POST response: - body: '{"private_nic":{"creation_date":"2023-10-23T06:49:20.076461+00:00","id":"c20a2ee0-5a33-4dca-8c27-99737557de8b","mac_address":"02:00:00:14:5e:c1","modification_date":"2023-10-23T06:49:20.076461+00:00","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","server_id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:01.597216+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1357,7 +1324,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:21 GMT + - Fri, 27 Oct 2023 09:02:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1367,7 +1334,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74d810f5-c95b-426e-9978-0cade4e27fb0 + - 09543770-69fe-4897-8782-6ca384129a80 status: 201 Created code: 201 duration: "" @@ -1376,12 +1343,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5/private_nics/c20a2ee0-5a33-4dca-8c27-99737557de8b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152/private_nics/8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-23T06:49:20.076461+00:00","id":"c20a2ee0-5a33-4dca-8c27-99737557de8b","mac_address":"02:00:00:14:5e:c1","modification_date":"2023-10-23T06:49:20.076461+00:00","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","server_id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:01.597216+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1390,7 +1357,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:21 GMT + - Fri, 27 Oct 2023 09:02:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1400,7 +1367,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55b8a854-798b-44d3-82f3-1d1634370eed + - 7c7cfc57-82a0-459c-ae84-b981d8c3e93a status: 200 OK code: 200 duration: "" @@ -1409,12 +1376,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5/private_nics/c20a2ee0-5a33-4dca-8c27-99737557de8b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152/private_nics/8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-23T06:49:20.076461+00:00","id":"c20a2ee0-5a33-4dca-8c27-99737557de8b","mac_address":"02:00:00:14:5e:c1","modification_date":"2023-10-23T06:49:21.137205+00:00","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","server_id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:02.456102+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1423,7 +1390,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:26 GMT + - Fri, 27 Oct 2023 09:02:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1433,7 +1400,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de8784aa-cd6a-431f-bb7e-d481be26b85e + - 65935264-eab2-45d5-9e96-cb89c909bb9f status: 200 OK code: 200 duration: "" @@ -1442,12 +1409,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5/private_nics/c20a2ee0-5a33-4dca-8c27-99737557de8b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152/private_nics/8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-23T06:49:20.076461+00:00","id":"c20a2ee0-5a33-4dca-8c27-99737557de8b","mac_address":"02:00:00:14:5e:c1","modification_date":"2023-10-23T06:49:21.137205+00:00","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","server_id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:02.456102+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1456,7 +1423,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:31 GMT + - Fri, 27 Oct 2023 09:02:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1466,7 +1433,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96d35263-5042-4341-9b30-4dc13ef8f0f7 + - 804e773f-346d-417a-9fe0-c0d3185aa50e status: 200 OK code: 200 duration: "" @@ -1475,12 +1442,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5/private_nics/c20a2ee0-5a33-4dca-8c27-99737557de8b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152/private_nics/8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-23T06:49:20.076461+00:00","id":"c20a2ee0-5a33-4dca-8c27-99737557de8b","mac_address":"02:00:00:14:5e:c1","modification_date":"2023-10-23T06:49:21.137205+00:00","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","server_id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:02.456102+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1489,7 +1456,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:36 GMT + - Fri, 27 Oct 2023 09:02:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1499,7 +1466,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d8ca852-c274-4aa5-abf3-3e42c31c0a05 + - d8af6dbc-ef33-4364-82f5-ba9d4fb20eaf status: 200 OK code: 200 duration: "" @@ -1508,12 +1475,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5/private_nics/c20a2ee0-5a33-4dca-8c27-99737557de8b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152/private_nics/8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-23T06:49:20.076461+00:00","id":"c20a2ee0-5a33-4dca-8c27-99737557de8b","mac_address":"02:00:00:14:5e:c1","modification_date":"2023-10-23T06:49:21.137205+00:00","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","server_id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:02.456102+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1522,7 +1489,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:41 GMT + - Fri, 27 Oct 2023 09:02:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1532,7 +1499,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68d31643-8be1-4017-a802-eaa53aa27086 + - 38ba56a7-302a-4c33-b9d1-699a8eef2cc1 status: 200 OK code: 200 duration: "" @@ -1541,12 +1508,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5/private_nics/c20a2ee0-5a33-4dca-8c27-99737557de8b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152/private_nics/8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-23T06:49:20.076461+00:00","id":"c20a2ee0-5a33-4dca-8c27-99737557de8b","mac_address":"02:00:00:14:5e:c1","modification_date":"2023-10-23T06:49:21.137205+00:00","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","server_id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:02.456102+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1555,7 +1522,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:46 GMT + - Fri, 27 Oct 2023 09:02:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1565,7 +1532,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2dfc3fdf-d239-40ef-b8e9-039dffc689e6 + - 52effa45-871f-4455-a459-ccd9e67c7432 status: 200 OK code: 200 duration: "" @@ -1574,12 +1541,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5/private_nics/c20a2ee0-5a33-4dca-8c27-99737557de8b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152/private_nics/8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-23T06:49:20.076461+00:00","id":"c20a2ee0-5a33-4dca-8c27-99737557de8b","mac_address":"02:00:00:14:5e:c1","modification_date":"2023-10-23T06:49:21.137205+00:00","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","server_id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:02.456102+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1588,7 +1555,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:51 GMT + - Fri, 27 Oct 2023 09:02:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1598,7 +1565,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e61372f-f77f-4730-b4cd-085d440d2c6b + - 16adef90-02d7-437d-91dc-94e3937af499 status: 200 OK code: 200 duration: "" @@ -1607,12 +1574,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5/private_nics/c20a2ee0-5a33-4dca-8c27-99737557de8b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152/private_nics/8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-23T06:49:20.076461+00:00","id":"c20a2ee0-5a33-4dca-8c27-99737557de8b","mac_address":"02:00:00:14:5e:c1","modification_date":"2023-10-23T06:49:51.552219+00:00","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","server_id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:32.886490+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "378" @@ -1621,7 +1588,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:56 GMT + - Fri, 27 Oct 2023 09:02:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1631,7 +1598,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 757d031c-0f67-4240-97ae-369912e7870c + - e51fb807-4a74-42a2-9c43-f350822817a3 status: 200 OK code: 200 duration: "" @@ -1640,12 +1607,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5/private_nics/c20a2ee0-5a33-4dca-8c27-99737557de8b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152/private_nics/8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-23T06:49:20.076461+00:00","id":"c20a2ee0-5a33-4dca-8c27-99737557de8b","mac_address":"02:00:00:14:5e:c1","modification_date":"2023-10-23T06:49:51.552219+00:00","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","server_id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:32.886490+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "378" @@ -1654,7 +1621,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:56 GMT + - Fri, 27 Oct 2023 09:02:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1664,7 +1631,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 697bf96d-3cf3-43b5-9332-1b53306710ca + - fff91943-5184-47db-a552-dc9b78ea3c0c status: 200 OK code: 200 duration: "" @@ -1673,26 +1640,26 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152 method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-23T06:49:02.173512+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-intelligent-wu","id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:01:44.938021+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-wonderful-heisenberg","id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1402","node_id":"25","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:03:d7","maintenances":[],"modification_date":"2023-10-23T06:49:15.994601+00:00","name":"tf-srv-intelligent-wu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.70.54.49","private_nics":[{"creation_date":"2023-10-23T06:49:20.076461+00:00","id":"c20a2ee0-5a33-4dca-8c27-99737557de8b","mac_address":"02:00:00:14:5e:c1","modification_date":"2023-10-23T06:49:51.552219+00:00","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","server_id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"fa78263d-512e-45c9-aba0-3e6aa6e527be","name":"tf-sg-nostalgic-jang"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-23T06:49:02.173512+00:00","export_uri":null,"id":"76b13f47-0510-4cf0-8f21-ca8a00e26062","modification_date":"2023-10-23T06:49:02.173512+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","name":"tf-srv-intelligent-wu"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"101","node_id":"7","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bd:31","maintenances":[],"modification_date":"2023-10-27T09:01:57.232719+00:00","name":"tf-srv-wonderful-heisenberg","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.80.13","private_nics":[{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:32.886490+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","name":"tf-sg-quirky-faraday"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:01:44.938021+00:00","export_uri":null,"id":"164fad99-13b2-44e8-ba8c-883cf6f09beb","modification_date":"2023-10-27T09:01:44.938021+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","name":"tf-srv-wonderful-heisenberg"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3158" + - "3174" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:57 GMT + - Fri, 27 Oct 2023 09:02:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1702,7 +1669,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac1df0c2-e847-44bc-aad2-dc0faac89dd9 + - 914e476c-cfe7-4580-ab35-077dd6937aa0 status: 200 OK code: 200 duration: "" @@ -1711,9 +1678,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152/user_data method: GET response: body: '{"user_data":[]}' @@ -1725,7 +1692,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:57 GMT + - Fri, 27 Oct 2023 09:02:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1735,7 +1702,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00fe39b4-24c5-419a-8246-01bb58ac386e + - 182b9fcc-d438-41cb-9103-5287b3296465 status: 200 OK code: 200 duration: "" @@ -1744,12 +1711,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-23T06:49:20.076461+00:00","id":"c20a2ee0-5a33-4dca-8c27-99737557de8b","mac_address":"02:00:00:14:5e:c1","modification_date":"2023-10-23T06:49:51.552219+00:00","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","server_id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:32.886490+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "381" @@ -1758,9 +1725,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:57 GMT + - Fri, 27 Oct 2023 09:02:38 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -1771,7 +1738,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac706f1d-a1e6-4522-8c91-83dad9ee26d2 + - 59029c1d-f733-46c1-acd7-102a4f91c4c5 X-Total-Count: - "1" status: 200 OK @@ -1782,12 +1749,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/5eeb3b25-340f-4e06-b10d-1098a45470d8 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/f5c121fb-bc6e-4282-8c9c-2433130e4b0d method: GET response: - body: '{"address":null,"created_at":"2023-10-23T06:49:07.693022Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","ipam_config":null,"mac_address":"02:00:00:14:5E:C0","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","status":"ready","updated_at":"2023-10-23T06:49:14.785590Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T09:01:50.606736Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T09:01:42.479163Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:42.479163Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","ipam_config":null,"mac_address":"02:00:00:14:74:05","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","status":"ready","updated_at":"2023-10-27T09:01:54.861866Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -1796,7 +1763,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:57 GMT + - Fri, 27 Oct 2023 09:02:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1806,32 +1773,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 807473fd-3383-4849-b031-86219aaa15a6 + - da30a2fa-dc90-432e-b6d3-7cf64bcb11b5 status: 200 OK code: 200 duration: "" - request: - body: '{"gateway_network_id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","mac_address":"02:00:00:14:5e:c1","ip_address":"192.168.1.4"}' + body: '{"gateway_network_id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","mac_address":"02:00:00:14:74:06","ip_address":"192.168.1.4"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries method: POST response: - body: '{"created_at":"2023-10-23T06:49:21.045171Z","gateway_network_id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","hostname":"tf-srv-intelligent-wu","id":"c298ea6d-288f-4c91-8fbf-7660fb9ca998","ip_address":"192.168.1.4","mac_address":"02:00:00:14:5e:c1","type":"reservation","updated_at":"2023-10-23T06:49:58.949441Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:02:02.368546Z","gateway_network_id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","hostname":"tf-srv-wonderful-heisenberg","id":"d58a764e-256f-4c72-a2b1-1243029b626e","ip_address":"192.168.1.4","mac_address":"02:00:00:14:74:06","type":"reservation","updated_at":"2023-10-27T09:02:38.607534Z","zone":"fr-par-1"}' headers: Content-Length: - - "334" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:58 GMT + - Fri, 27 Oct 2023 09:02:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1841,7 +1808,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8ab4bf1-484b-49af-b5bc-ba453618bd60 + - 1b4f0458-92f6-4a42-b2f5-8248ee6cfe12 status: 200 OK code: 200 duration: "" @@ -1850,12 +1817,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/5eeb3b25-340f-4e06-b10d-1098a45470d8 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/f5c121fb-bc6e-4282-8c9c-2433130e4b0d method: GET response: - body: '{"address":null,"created_at":"2023-10-23T06:49:07.693022Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","ipam_config":null,"mac_address":"02:00:00:14:5E:C0","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","status":"ready","updated_at":"2023-10-23T06:49:14.785590Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T09:01:50.606736Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T09:01:42.479163Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:42.479163Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","ipam_config":null,"mac_address":"02:00:00:14:74:05","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","status":"ready","updated_at":"2023-10-27T09:01:54.861866Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -1864,7 +1831,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:59 GMT + - Fri, 27 Oct 2023 09:02:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1874,7 +1841,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2be5b7d-ff50-48df-b0e5-82ed18ec043c + - 9bb00ba8-3056-42be-a714-d965b9f3f50f status: 200 OK code: 200 duration: "" @@ -1883,21 +1850,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/c298ea6d-288f-4c91-8fbf-7660fb9ca998 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/d58a764e-256f-4c72-a2b1-1243029b626e method: GET response: - body: '{"created_at":"2023-10-23T06:49:21.045171Z","gateway_network_id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","hostname":"tf-srv-intelligent-wu","id":"c298ea6d-288f-4c91-8fbf-7660fb9ca998","ip_address":"192.168.1.4","mac_address":"02:00:00:14:5e:c1","type":"reservation","updated_at":"2023-10-23T06:49:58.949441Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:02:02.368546Z","gateway_network_id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","hostname":"tf-srv-wonderful-heisenberg","id":"d58a764e-256f-4c72-a2b1-1243029b626e","ip_address":"192.168.1.4","mac_address":"02:00:00:14:74:06","type":"reservation","updated_at":"2023-10-27T09:02:38.607534Z","zone":"fr-par-1"}' headers: Content-Length: - - "334" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:59 GMT + - Fri, 27 Oct 2023 09:02:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1907,7 +1874,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0354e21a-c42f-460d-8e07-063418255f2b + - 90f9a384-0b8c-49dc-a90a-9fa910e2198e status: 200 OK code: 200 duration: "" @@ -1916,12 +1883,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2d37d34b-7e78-4592-b39f-6adb62147e09 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4f732be2-2bec-4461-bbbe-b947cc738b01 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-23T06:49:01.203511Z","gateway_networks":[{"address":null,"created_at":"2023-10-23T06:49:07.693022Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","ipam_config":null,"mac_address":"02:00:00:14:5E:C0","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","status":"ready","updated_at":"2023-10-23T06:49:14.785590Z","zone":"fr-par-1"}],"id":"2d37d34b-7e78-4592-b39f-6adb62147e09","ip":{"address":"51.158.114.104","created_at":"2023-10-23T06:49:00.957190Z","gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"a7332263-ec06-45f0-8553-608b5579a3e3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"104-114-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-23T06:49:00.957190Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-23T06:49:14.933740Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:01:43.234821Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T09:01:50.606736Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T09:01:42.479163Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:42.479163Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","ipam_config":null,"mac_address":"02:00:00:14:74:05","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","status":"ready","updated_at":"2023-10-27T09:01:54.861866Z","zone":"fr-par-1"}],"id":"4f732be2-2bec-4461-bbbe-b947cc738b01","ip":{"address":"163.172.134.68","created_at":"2023-10-27T09:01:43.051349Z","gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"6cf1b756-e3a7-4023-ab09-189ee80e5c47","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"68-134-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:01:43.051349Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:01:55.050044Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "1966" @@ -1930,7 +1897,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:59 GMT + - Fri, 27 Oct 2023 09:02:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1940,7 +1907,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3050a3b8-d74e-4956-a5f8-6ebffc7bb19c + - 4c86c784-e806-4568-bae3-7e7c466df556 status: 200 OK code: 200 duration: "" @@ -1949,21 +1916,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/c298ea6d-288f-4c91-8fbf-7660fb9ca998 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4f732be2-2bec-4461-bbbe-b947cc738b01 method: GET response: - body: '{"created_at":"2023-10-23T06:49:21.045171Z","gateway_network_id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","hostname":"tf-srv-intelligent-wu","id":"c298ea6d-288f-4c91-8fbf-7660fb9ca998","ip_address":"192.168.1.4","mac_address":"02:00:00:14:5e:c1","type":"reservation","updated_at":"2023-10-23T06:49:58.949441Z","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:01:43.234821Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T09:01:50.606736Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T09:01:42.479163Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:42.479163Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","ipam_config":null,"mac_address":"02:00:00:14:74:05","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","status":"ready","updated_at":"2023-10-27T09:01:54.861866Z","zone":"fr-par-1"}],"id":"4f732be2-2bec-4461-bbbe-b947cc738b01","ip":{"address":"163.172.134.68","created_at":"2023-10-27T09:01:43.051349Z","gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"6cf1b756-e3a7-4023-ab09-189ee80e5c47","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"68-134-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:01:43.051349Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:01:55.050044Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "334" + - "1966" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:59 GMT + - Fri, 27 Oct 2023 09:02:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1973,7 +1940,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e945c6d-2081-4305-af2e-0be54cb6b03e + - e66b60b5-0aa9-4d72-9916-185a65abc7e1 status: 200 OK code: 200 duration: "" @@ -1982,21 +1949,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2d37d34b-7e78-4592-b39f-6adb62147e09 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/d58a764e-256f-4c72-a2b1-1243029b626e method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-23T06:49:01.203511Z","gateway_networks":[{"address":null,"created_at":"2023-10-23T06:49:07.693022Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","ipam_config":null,"mac_address":"02:00:00:14:5E:C0","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","status":"ready","updated_at":"2023-10-23T06:49:14.785590Z","zone":"fr-par-1"}],"id":"2d37d34b-7e78-4592-b39f-6adb62147e09","ip":{"address":"51.158.114.104","created_at":"2023-10-23T06:49:00.957190Z","gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"a7332263-ec06-45f0-8553-608b5579a3e3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"104-114-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-23T06:49:00.957190Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-23T06:49:14.933740Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:02:02.368546Z","gateway_network_id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","hostname":"tf-srv-wonderful-heisenberg","id":"d58a764e-256f-4c72-a2b1-1243029b626e","ip_address":"192.168.1.4","mac_address":"02:00:00:14:74:06","type":"reservation","updated_at":"2023-10-27T09:02:38.607534Z","zone":"fr-par-1"}' headers: Content-Length: - - "1966" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:59 GMT + - Fri, 27 Oct 2023 09:02:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2006,23 +1973,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 561b83cb-6824-48e0-a594-4d18a86630df + - e345ceaf-56fb-4ca7-887d-b854d059e042 status: 200 OK code: 200 duration: "" - request: - body: '{"gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","public_port":2222,"private_ip":"192.168.1.4","private_port":22,"protocol":"tcp"}' + body: '{"gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","public_port":2222,"private_ip":"192.168.1.4","private_port":22,"protocol":"tcp"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules method: POST response: - body: '{"created_at":"2023-10-23T06:49:59.392783Z","gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"38d069a3-39bb-4451-bdd9-d7e88976dec9","private_ip":"192.168.1.4","private_port":22,"protocol":"tcp","public_port":2222,"updated_at":"2023-10-23T06:49:59.392783Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:02:38.932763Z","gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"29b25ef7-8421-429a-b6dd-6034ff1575fe","private_ip":"192.168.1.4","private_port":22,"protocol":"tcp","public_port":2222,"updated_at":"2023-10-27T09:02:38.932763Z","zone":"fr-par-1"}' headers: Content-Length: - "290" @@ -2031,7 +1998,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:59 GMT + - Fri, 27 Oct 2023 09:02:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2041,7 +2008,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c641d2e1-72ff-4ad3-8d27-7c52ebca94ce + - 9f193d6a-19bd-4209-ba25-a1461117a71d status: 200 OK code: 200 duration: "" @@ -2050,12 +2017,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2d37d34b-7e78-4592-b39f-6adb62147e09 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4f732be2-2bec-4461-bbbe-b947cc738b01 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-23T06:49:01.203511Z","gateway_networks":[{"address":null,"created_at":"2023-10-23T06:49:07.693022Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","ipam_config":null,"mac_address":"02:00:00:14:5E:C0","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","status":"ready","updated_at":"2023-10-23T06:49:14.785590Z","zone":"fr-par-1"}],"id":"2d37d34b-7e78-4592-b39f-6adb62147e09","ip":{"address":"51.158.114.104","created_at":"2023-10-23T06:49:00.957190Z","gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"a7332263-ec06-45f0-8553-608b5579a3e3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"104-114-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-23T06:49:00.957190Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-23T06:49:14.933740Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:01:43.234821Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T09:01:50.606736Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T09:01:42.479163Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:42.479163Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","ipam_config":null,"mac_address":"02:00:00:14:74:05","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","status":"ready","updated_at":"2023-10-27T09:01:54.861866Z","zone":"fr-par-1"}],"id":"4f732be2-2bec-4461-bbbe-b947cc738b01","ip":{"address":"163.172.134.68","created_at":"2023-10-27T09:01:43.051349Z","gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"6cf1b756-e3a7-4023-ab09-189ee80e5c47","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"68-134-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:01:43.051349Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:01:55.050044Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "1966" @@ -2064,7 +2031,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:59 GMT + - Fri, 27 Oct 2023 09:02:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2074,7 +2041,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dfe7dce5-1e2a-4e48-bcab-108b93284c09 + - 9e45eb78-24c9-4ec0-bd8b-ec6ab5c80222 status: 200 OK code: 200 duration: "" @@ -2083,12 +2050,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules/38d069a3-39bb-4451-bdd9-d7e88976dec9 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules/29b25ef7-8421-429a-b6dd-6034ff1575fe method: GET response: - body: '{"created_at":"2023-10-23T06:49:59.392783Z","gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"38d069a3-39bb-4451-bdd9-d7e88976dec9","private_ip":"192.168.1.4","private_port":22,"protocol":"tcp","public_port":2222,"updated_at":"2023-10-23T06:49:59.392783Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:02:38.932763Z","gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"29b25ef7-8421-429a-b6dd-6034ff1575fe","private_ip":"192.168.1.4","private_port":22,"protocol":"tcp","public_port":2222,"updated_at":"2023-10-27T09:02:38.932763Z","zone":"fr-par-1"}' headers: Content-Length: - "290" @@ -2097,7 +2064,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:59 GMT + - Fri, 27 Oct 2023 09:02:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2107,7 +2074,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74f1a812-c259-4a0c-902e-cc67bcec47b6 + - e30173f8-b5a8-451e-a3d7-91aba2b5853f status: 200 OK code: 200 duration: "" @@ -2116,21 +2083,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/c298ea6d-288f-4c91-8fbf-7660fb9ca998 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/d58a764e-256f-4c72-a2b1-1243029b626e method: GET response: - body: '{"created_at":"2023-10-23T06:49:21.045171Z","gateway_network_id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","hostname":"tf-srv-intelligent-wu","id":"c298ea6d-288f-4c91-8fbf-7660fb9ca998","ip_address":"192.168.1.4","mac_address":"02:00:00:14:5e:c1","type":"reservation","updated_at":"2023-10-23T06:49:58.949441Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:02:02.368546Z","gateway_network_id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","hostname":"tf-srv-wonderful-heisenberg","id":"d58a764e-256f-4c72-a2b1-1243029b626e","ip_address":"192.168.1.4","mac_address":"02:00:00:14:74:06","type":"reservation","updated_at":"2023-10-27T09:02:38.607534Z","zone":"fr-par-1"}' headers: Content-Length: - - "334" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:49:59 GMT + - Fri, 27 Oct 2023 09:02:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2140,7 +2107,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8aede02-edd4-4269-9c96-b1a4eb74445a + - 456ed07f-0ca8-4f20-a4b3-74da7a214cc1 status: 200 OK code: 200 duration: "" @@ -2149,12 +2116,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/060f8446-d73c-4c83-a8a1-a17a1d32bc17 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c method: GET response: - body: '{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"address":"192.168.1.1","created_at":"2023-10-27T09:01:42.479163Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:42.479163Z","valid_lifetime":"3600s","zone":"fr-par-1"}' headers: Content-Length: - "586" @@ -2163,7 +2130,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:00 GMT + - Fri, 27 Oct 2023 09:02:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2173,7 +2140,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60ecb236-fee0-46fc-8abc-4b1215aeba36 + - 1fc1e2b6-f7a6-4462-a1af-f502be941365 status: 200 OK code: 200 duration: "" @@ -2182,12 +2149,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/a7332263-ec06-45f0-8553-608b5579a3e3 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/6cf1b756-e3a7-4023-ab09-189ee80e5c47 method: GET response: - body: '{"address":"51.158.114.104","created_at":"2023-10-23T06:49:00.957190Z","gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"a7332263-ec06-45f0-8553-608b5579a3e3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"104-114-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-23T06:49:00.957190Z","zone":"fr-par-1"}' + body: '{"address":"163.172.134.68","created_at":"2023-10-27T09:01:43.051349Z","gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"6cf1b756-e3a7-4023-ab09-189ee80e5c47","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"68-134-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:01:43.051349Z","zone":"fr-par-1"}' headers: Content-Length: - "403" @@ -2196,7 +2163,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:00 GMT + - Fri, 27 Oct 2023 09:02:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2206,7 +2173,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9172b2cd-69e0-4be6-a563-49ec871d1b6e + - 3ed74b34-d547-4928-8223-1b67eecde7d0 status: 200 OK code: 200 duration: "" @@ -2215,12 +2182,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/41c8b3b2-3199-44a5-a72c-b542c635bf8f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bd471267-f3fa-4cb3-8b37-7aa3d08a5f36 method: GET response: - body: '{"created_at":"2023-10-23T06:49:00.430024Z","dhcp_enabled":true,"id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","name":"TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Static","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-23T06:49:00.430024Z","id":"867c0a14-8105-4a52-887b-0b1dd00b21a0","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:06.741060Z"},{"created_at":"2023-10-23T06:49:00.430024Z","id":"d008ebf0-c1a0-40c5-a489-4b108473f177","subnet":"fd5f:519c:6d46:a78a::/64","updated_at":"2023-10-23T06:49:06.744956Z"}],"tags":[],"updated_at":"2023-10-23T06:49:14.337043Z","vpc_id":"0520a26c-84b0-49e9-bfbb-74ff3c383261"}' + body: '{"created_at":"2023-10-27T09:01:42.481800Z","dhcp_enabled":true,"id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","name":"TestAccScalewayDataSourceVPCPublicGatewayDHCPReservation_Static","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T09:01:42.481800Z","id":"d5773e42-8cf7-4c5a-b587-ba8ec4dc928e","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:48.855400Z"},{"created_at":"2023-10-27T09:01:42.481800Z","id":"457175c5-7afe-45e2-9aca-2170fd6b439c","subnet":"fd46:78ab:30b8:701a::/64","updated_at":"2023-10-27T09:01:48.860105Z"}],"tags":[],"updated_at":"2023-10-27T09:01:52.433710Z","vpc_id":"b10aaa94-0775-4467-ab81-8bab6d7c50c6"}' headers: Content-Length: - "764" @@ -2229,7 +2196,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:00 GMT + - Fri, 27 Oct 2023 09:02:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2239,7 +2206,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55992956-d9e6-42cd-848b-68eaec60781c + - c2b22b9a-d5ca-4ce3-b6fc-c5ac05e87acf status: 200 OK code: 200 duration: "" @@ -2248,12 +2215,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2d37d34b-7e78-4592-b39f-6adb62147e09 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4f732be2-2bec-4461-bbbe-b947cc738b01 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-23T06:49:01.203511Z","gateway_networks":[{"address":null,"created_at":"2023-10-23T06:49:07.693022Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","ipam_config":null,"mac_address":"02:00:00:14:5E:C0","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","status":"ready","updated_at":"2023-10-23T06:49:14.785590Z","zone":"fr-par-1"}],"id":"2d37d34b-7e78-4592-b39f-6adb62147e09","ip":{"address":"51.158.114.104","created_at":"2023-10-23T06:49:00.957190Z","gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"a7332263-ec06-45f0-8553-608b5579a3e3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"104-114-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-23T06:49:00.957190Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-23T06:49:14.933740Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:01:43.234821Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T09:01:50.606736Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T09:01:42.479163Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:42.479163Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","ipam_config":null,"mac_address":"02:00:00:14:74:05","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","status":"ready","updated_at":"2023-10-27T09:01:54.861866Z","zone":"fr-par-1"}],"id":"4f732be2-2bec-4461-bbbe-b947cc738b01","ip":{"address":"163.172.134.68","created_at":"2023-10-27T09:01:43.051349Z","gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"6cf1b756-e3a7-4023-ab09-189ee80e5c47","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"68-134-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:01:43.051349Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:01:55.050044Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "1966" @@ -2262,7 +2229,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:00 GMT + - Fri, 27 Oct 2023 09:02:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2272,7 +2239,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f872915-605f-4e3a-a5b1-37158efe7a29 + - abb90d33-f099-4324-9e7a-3f0d5924c29d status: 200 OK code: 200 duration: "" @@ -2281,21 +2248,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/fa78263d-512e-45c9-aba0-3e6aa6e527be + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/89c3704f-8b48-43fa-b54a-78c1718d1557 method: GET response: - body: '{"security_group":{"creation_date":"2023-10-23T06:49:00.512612+00:00","description":"","enable_default_security":true,"id":"fa78263d-512e-45c9-aba0-3e6aa6e527be","inbound_default_policy":"drop","modification_date":"2023-10-23T06:49:01.448209+00:00","name":"tf-sg-nostalgic-jang","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[{"id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","name":"tf-srv-intelligent-wu"}],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2023-10-27T09:01:42.549979+00:00","description":"","enable_default_security":true,"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","inbound_default_policy":"drop","modification_date":"2023-10-27T09:01:43.351700+00:00","name":"tf-sg-quirky-faraday","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[{"id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","name":"tf-srv-wonderful-heisenberg"}],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "661" + - "667" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:00 GMT + - Fri, 27 Oct 2023 09:02:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2305,7 +2272,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ddfa3527-de72-4103-be96-d44fd23ed4d2 + - a54a071e-4383-4d51-9b62-4705d76082b3 status: 200 OK code: 200 duration: "" @@ -2314,21 +2281,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/5eeb3b25-340f-4e06-b10d-1098a45470d8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/89c3704f-8b48-43fa-b54a-78c1718d1557/rules?page=1 method: GET response: - body: '{"address":null,"created_at":"2023-10-23T06:49:07.693022Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","ipam_config":null,"mac_address":"02:00:00:14:5E:C0","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","status":"ready","updated_at":"2023-10-23T06:49:14.785590Z","zone":"fr-par-1"}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"58909be7-d17c-4ac8-9eb3-23d5fc58abc5","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"25680235-108b-4bbc-8e25-114303d950bd","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"4a31b633-118e-4900-bd52-facf1085fc8d","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"e7dd28e8-3747-4c7c-9a4f-35ae3f0ae2cd","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"f37d9e7c-8ed7-4e0f-baff-7f5e7ede0baf","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"68054851-54e3-46c9-9cd7-83219751248b","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"6c11ee3b-eb12-4796-9aab-f95c9426c161","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - - "996" + - "1792" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:00 GMT + - Fri, 27 Oct 2023 09:02:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2338,7 +2305,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 754fabc2-c74f-4fd9-b4f0-a3e071b573cd + - 59fc6b9a-0278-4a04-84cb-5d835a88b1da status: 200 OK code: 200 duration: "" @@ -2347,21 +2314,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2d37d34b-7e78-4592-b39f-6adb62147e09 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/f5c121fb-bc6e-4282-8c9c-2433130e4b0d method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-23T06:49:01.203511Z","gateway_networks":[{"address":null,"created_at":"2023-10-23T06:49:07.693022Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","ipam_config":null,"mac_address":"02:00:00:14:5E:C0","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","status":"ready","updated_at":"2023-10-23T06:49:14.785590Z","zone":"fr-par-1"}],"id":"2d37d34b-7e78-4592-b39f-6adb62147e09","ip":{"address":"51.158.114.104","created_at":"2023-10-23T06:49:00.957190Z","gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"a7332263-ec06-45f0-8553-608b5579a3e3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"104-114-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-23T06:49:00.957190Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-23T06:49:14.933740Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T09:01:50.606736Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T09:01:42.479163Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:42.479163Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","ipam_config":null,"mac_address":"02:00:00:14:74:05","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","status":"ready","updated_at":"2023-10-27T09:01:54.861866Z","zone":"fr-par-1"}' headers: Content-Length: - - "1966" + - "996" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:00 GMT + - Fri, 27 Oct 2023 09:02:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2371,7 +2338,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be1f5fff-5242-49db-b371-67b3c6ce0745 + - e3ea5797-bc05-40ce-944c-af1f9121f286 status: 200 OK code: 200 duration: "" @@ -2380,21 +2347,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/fa78263d-512e-45c9-aba0-3e6aa6e527be/rules?page=1 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4f732be2-2bec-4461-bbbe-b947cc738b01 method: GET response: - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"58909be7-d17c-4ac8-9eb3-23d5fc58abc5","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"25680235-108b-4bbc-8e25-114303d950bd","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"4a31b633-118e-4900-bd52-facf1085fc8d","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"e7dd28e8-3747-4c7c-9a4f-35ae3f0ae2cd","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"f37d9e7c-8ed7-4e0f-baff-7f5e7ede0baf","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"68054851-54e3-46c9-9cd7-83219751248b","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"29c3f701-4721-40c7-91c4-9a9fbad22a75","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:01:43.234821Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T09:01:50.606736Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T09:01:42.479163Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:42.479163Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","ipam_config":null,"mac_address":"02:00:00:14:74:05","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","status":"ready","updated_at":"2023-10-27T09:01:54.861866Z","zone":"fr-par-1"}],"id":"4f732be2-2bec-4461-bbbe-b947cc738b01","ip":{"address":"163.172.134.68","created_at":"2023-10-27T09:01:43.051349Z","gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"6cf1b756-e3a7-4023-ab09-189ee80e5c47","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"68-134-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:01:43.051349Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:01:55.050044Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "1792" + - "1966" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:00 GMT + - Fri, 27 Oct 2023 09:02:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2404,7 +2371,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d79fc52d-8094-49ad-afe7-5be1a800cdf2 + - 64234d7e-7897-4f00-a097-b8c3e57b03cb status: 200 OK code: 200 duration: "" @@ -2413,12 +2380,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/5eeb3b25-340f-4e06-b10d-1098a45470d8 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/f5c121fb-bc6e-4282-8c9c-2433130e4b0d method: GET response: - body: '{"address":null,"created_at":"2023-10-23T06:49:07.693022Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","ipam_config":null,"mac_address":"02:00:00:14:5E:C0","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","status":"ready","updated_at":"2023-10-23T06:49:14.785590Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T09:01:50.606736Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T09:01:42.479163Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:42.479163Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","ipam_config":null,"mac_address":"02:00:00:14:74:05","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","status":"ready","updated_at":"2023-10-27T09:01:54.861866Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -2427,7 +2394,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:00 GMT + - Fri, 27 Oct 2023 09:02:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2437,7 +2404,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d6b9c36-cd96-4d04-9951-62bb0044e6dc + - cc0cb5ee-e345-462b-bb5d-89f26a0101e4 status: 200 OK code: 200 duration: "" @@ -2446,26 +2413,26 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152 method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-23T06:49:02.173512+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-intelligent-wu","id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:01:44.938021+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-wonderful-heisenberg","id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1402","node_id":"25","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:03:d7","maintenances":[],"modification_date":"2023-10-23T06:49:15.994601+00:00","name":"tf-srv-intelligent-wu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.70.54.49","private_nics":[{"creation_date":"2023-10-23T06:49:20.076461+00:00","id":"c20a2ee0-5a33-4dca-8c27-99737557de8b","mac_address":"02:00:00:14:5e:c1","modification_date":"2023-10-23T06:49:51.552219+00:00","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","server_id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"fa78263d-512e-45c9-aba0-3e6aa6e527be","name":"tf-sg-nostalgic-jang"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-23T06:49:02.173512+00:00","export_uri":null,"id":"76b13f47-0510-4cf0-8f21-ca8a00e26062","modification_date":"2023-10-23T06:49:02.173512+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","name":"tf-srv-intelligent-wu"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"101","node_id":"7","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bd:31","maintenances":[],"modification_date":"2023-10-27T09:01:57.232719+00:00","name":"tf-srv-wonderful-heisenberg","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.80.13","private_nics":[{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:32.886490+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","name":"tf-sg-quirky-faraday"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:01:44.938021+00:00","export_uri":null,"id":"164fad99-13b2-44e8-ba8c-883cf6f09beb","modification_date":"2023-10-27T09:01:44.938021+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","name":"tf-srv-wonderful-heisenberg"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3158" + - "3174" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:00 GMT + - Fri, 27 Oct 2023 09:02:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2475,7 +2442,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48ac0368-6380-4ae0-a3f7-32782fd38a6e + - 9d81cd4d-7595-47f2-81c2-29f2674e9198 status: 200 OK code: 200 duration: "" @@ -2484,9 +2451,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152/user_data method: GET response: body: '{"user_data":[]}' @@ -2498,7 +2465,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:00 GMT + - Fri, 27 Oct 2023 09:02:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2508,7 +2475,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec031ec8-6964-4d17-8aee-ff1b4dc14534 + - 1894166c-c56c-416d-8370-3f3fce13db5f status: 200 OK code: 200 duration: "" @@ -2517,12 +2484,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-23T06:49:20.076461+00:00","id":"c20a2ee0-5a33-4dca-8c27-99737557de8b","mac_address":"02:00:00:14:5e:c1","modification_date":"2023-10-23T06:49:51.552219+00:00","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","server_id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:32.886490+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "381" @@ -2531,9 +2498,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:00 GMT + - Fri, 27 Oct 2023 09:02:40 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -2544,7 +2511,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3857b9f-8862-4dfa-93f7-ad8714bb82e9 + - f633c63c-6171-4af5-9b80-5d91accdd9e7 X-Total-Count: - "1" status: 200 OK @@ -2555,21 +2522,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/c298ea6d-288f-4c91-8fbf-7660fb9ca998 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/d58a764e-256f-4c72-a2b1-1243029b626e method: GET response: - body: '{"created_at":"2023-10-23T06:49:21.045171Z","gateway_network_id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","hostname":"tf-srv-intelligent-wu","id":"c298ea6d-288f-4c91-8fbf-7660fb9ca998","ip_address":"192.168.1.4","mac_address":"02:00:00:14:5e:c1","type":"reservation","updated_at":"2023-10-23T06:49:58.949441Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:02:02.368546Z","gateway_network_id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","hostname":"tf-srv-wonderful-heisenberg","id":"d58a764e-256f-4c72-a2b1-1243029b626e","ip_address":"192.168.1.4","mac_address":"02:00:00:14:74:06","type":"reservation","updated_at":"2023-10-27T09:02:38.607534Z","zone":"fr-par-1"}' headers: Content-Length: - - "334" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:00 GMT + - Fri, 27 Oct 2023 09:02:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2579,7 +2546,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55e9f8b7-b9fd-40ba-a198-55c64e2948cb + - 97b2cf23-cad7-4b1a-b08d-48eb399fa73c status: 200 OK code: 200 duration: "" @@ -2588,12 +2555,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules/38d069a3-39bb-4451-bdd9-d7e88976dec9 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules/29b25ef7-8421-429a-b6dd-6034ff1575fe method: GET response: - body: '{"created_at":"2023-10-23T06:49:59.392783Z","gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"38d069a3-39bb-4451-bdd9-d7e88976dec9","private_ip":"192.168.1.4","private_port":22,"protocol":"tcp","public_port":2222,"updated_at":"2023-10-23T06:49:59.392783Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:02:38.932763Z","gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"29b25ef7-8421-429a-b6dd-6034ff1575fe","private_ip":"192.168.1.4","private_port":22,"protocol":"tcp","public_port":2222,"updated_at":"2023-10-27T09:02:38.932763Z","zone":"fr-par-1"}' headers: Content-Length: - "290" @@ -2602,7 +2569,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:00 GMT + - Fri, 27 Oct 2023 09:02:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2612,7 +2579,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34cdb683-0d33-4755-b81d-8c7493b5f489 + - 23cc64d3-8658-4992-a714-4da2a6dcf724 status: 200 OK code: 200 duration: "" @@ -2621,21 +2588,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/c298ea6d-288f-4c91-8fbf-7660fb9ca998 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/d58a764e-256f-4c72-a2b1-1243029b626e method: GET response: - body: '{"created_at":"2023-10-23T06:49:21.045171Z","gateway_network_id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","hostname":"tf-srv-intelligent-wu","id":"c298ea6d-288f-4c91-8fbf-7660fb9ca998","ip_address":"192.168.1.4","mac_address":"02:00:00:14:5e:c1","type":"reservation","updated_at":"2023-10-23T06:49:58.949441Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:02:02.368546Z","gateway_network_id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","hostname":"tf-srv-wonderful-heisenberg","id":"d58a764e-256f-4c72-a2b1-1243029b626e","ip_address":"192.168.1.4","mac_address":"02:00:00:14:74:06","type":"reservation","updated_at":"2023-10-27T09:02:38.607534Z","zone":"fr-par-1"}' headers: Content-Length: - - "334" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:00 GMT + - Fri, 27 Oct 2023 09:02:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2645,7 +2612,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69efb57c-a93c-4fff-bf92-d5565f795aa0 + - 62cd22d4-cb79-4bdf-a7c6-fa67bcc7a8b0 status: 200 OK code: 200 duration: "" @@ -2654,21 +2621,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/c298ea6d-288f-4c91-8fbf-7660fb9ca998 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/d58a764e-256f-4c72-a2b1-1243029b626e method: GET response: - body: '{"created_at":"2023-10-23T06:49:21.045171Z","gateway_network_id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","hostname":"tf-srv-intelligent-wu","id":"c298ea6d-288f-4c91-8fbf-7660fb9ca998","ip_address":"192.168.1.4","mac_address":"02:00:00:14:5e:c1","type":"reservation","updated_at":"2023-10-23T06:49:58.949441Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:02:02.368546Z","gateway_network_id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","hostname":"tf-srv-wonderful-heisenberg","id":"d58a764e-256f-4c72-a2b1-1243029b626e","ip_address":"192.168.1.4","mac_address":"02:00:00:14:74:06","type":"reservation","updated_at":"2023-10-27T09:02:38.607534Z","zone":"fr-par-1"}' headers: Content-Length: - - "334" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:01 GMT + - Fri, 27 Oct 2023 09:02:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2678,7 +2645,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e365a6e0-5a07-415a-ac17-09f929f067fa + - 45821507-4ee7-4cf3-a00c-b9291ae172f7 status: 200 OK code: 200 duration: "" @@ -2687,12 +2654,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules/38d069a3-39bb-4451-bdd9-d7e88976dec9 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules/29b25ef7-8421-429a-b6dd-6034ff1575fe method: GET response: - body: '{"created_at":"2023-10-23T06:49:59.392783Z","gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"38d069a3-39bb-4451-bdd9-d7e88976dec9","private_ip":"192.168.1.4","private_port":22,"protocol":"tcp","public_port":2222,"updated_at":"2023-10-23T06:49:59.392783Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:02:38.932763Z","gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"29b25ef7-8421-429a-b6dd-6034ff1575fe","private_ip":"192.168.1.4","private_port":22,"protocol":"tcp","public_port":2222,"updated_at":"2023-10-27T09:02:38.932763Z","zone":"fr-par-1"}' headers: Content-Length: - "290" @@ -2701,7 +2668,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:01 GMT + - Fri, 27 Oct 2023 09:02:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2711,7 +2678,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0528315a-e58b-4fcc-97dc-b6852198c2f1 + - a16f0bd0-392f-4968-b41b-2371d586d8ae status: 200 OK code: 200 duration: "" @@ -2720,12 +2687,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2d37d34b-7e78-4592-b39f-6adb62147e09 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4f732be2-2bec-4461-bbbe-b947cc738b01 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-23T06:49:01.203511Z","gateway_networks":[{"address":null,"created_at":"2023-10-23T06:49:07.693022Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","ipam_config":null,"mac_address":"02:00:00:14:5E:C0","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","status":"ready","updated_at":"2023-10-23T06:49:14.785590Z","zone":"fr-par-1"}],"id":"2d37d34b-7e78-4592-b39f-6adb62147e09","ip":{"address":"51.158.114.104","created_at":"2023-10-23T06:49:00.957190Z","gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"a7332263-ec06-45f0-8553-608b5579a3e3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"104-114-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-23T06:49:00.957190Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-23T06:49:14.933740Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:01:43.234821Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T09:01:50.606736Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T09:01:42.479163Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:42.479163Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","ipam_config":null,"mac_address":"02:00:00:14:74:05","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","status":"ready","updated_at":"2023-10-27T09:01:54.861866Z","zone":"fr-par-1"}],"id":"4f732be2-2bec-4461-bbbe-b947cc738b01","ip":{"address":"163.172.134.68","created_at":"2023-10-27T09:01:43.051349Z","gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"6cf1b756-e3a7-4023-ab09-189ee80e5c47","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"68-134-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:01:43.051349Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:01:55.050044Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "1966" @@ -2734,7 +2701,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:01 GMT + - Fri, 27 Oct 2023 09:02:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2744,7 +2711,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a03d9002-8387-449d-b385-8bbc36a26b66 + - 8ded54fb-013e-4ab7-888b-d640ded553e6 status: 200 OK code: 200 duration: "" @@ -2753,9 +2720,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules/38d069a3-39bb-4451-bdd9-d7e88976dec9 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules/29b25ef7-8421-429a-b6dd-6034ff1575fe method: DELETE response: body: "" @@ -2765,7 +2732,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:01 GMT + - Fri, 27 Oct 2023 09:02:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2775,7 +2742,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59f267af-5fa7-4b84-83c8-f0d233875107 + - 0dd2823d-b1c4-4eb6-b8f6-bb010876fc35 status: 204 No Content code: 204 duration: "" @@ -2784,12 +2751,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2d37d34b-7e78-4592-b39f-6adb62147e09 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4f732be2-2bec-4461-bbbe-b947cc738b01 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-23T06:49:01.203511Z","gateway_networks":[{"address":null,"created_at":"2023-10-23T06:49:07.693022Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","ipam_config":null,"mac_address":"02:00:00:14:5E:C0","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","status":"ready","updated_at":"2023-10-23T06:49:14.785590Z","zone":"fr-par-1"}],"id":"2d37d34b-7e78-4592-b39f-6adb62147e09","ip":{"address":"51.158.114.104","created_at":"2023-10-23T06:49:00.957190Z","gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"a7332263-ec06-45f0-8553-608b5579a3e3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"104-114-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-23T06:49:00.957190Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-23T06:49:14.933740Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:01:43.234821Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T09:01:50.606736Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T09:01:42.479163Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:42.479163Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","ipam_config":null,"mac_address":"02:00:00:14:74:05","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","status":"ready","updated_at":"2023-10-27T09:01:54.861866Z","zone":"fr-par-1"}],"id":"4f732be2-2bec-4461-bbbe-b947cc738b01","ip":{"address":"163.172.134.68","created_at":"2023-10-27T09:01:43.051349Z","gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"6cf1b756-e3a7-4023-ab09-189ee80e5c47","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"68-134-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:01:43.051349Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:01:55.050044Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "1966" @@ -2798,7 +2765,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:01 GMT + - Fri, 27 Oct 2023 09:02:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2808,7 +2775,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4942ea14-4a0e-4b43-8b49-bc55297a8cbf + - 43125889-7c40-40c3-b0da-c9631aade964 status: 200 OK code: 200 duration: "" @@ -2817,12 +2784,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/5eeb3b25-340f-4e06-b10d-1098a45470d8 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/f5c121fb-bc6e-4282-8c9c-2433130e4b0d method: GET response: - body: '{"address":null,"created_at":"2023-10-23T06:49:07.693022Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","ipam_config":null,"mac_address":"02:00:00:14:5E:C0","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","status":"ready","updated_at":"2023-10-23T06:49:14.785590Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T09:01:50.606736Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T09:01:42.479163Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:42.479163Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","ipam_config":null,"mac_address":"02:00:00:14:74:05","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","status":"ready","updated_at":"2023-10-27T09:01:54.861866Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -2831,7 +2798,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:01 GMT + - Fri, 27 Oct 2023 09:02:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2841,7 +2808,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72574bd1-a56e-452a-bf7e-31c326de731b + - 8ab8bc41-7d80-4280-9da5-5b637b24fae9 status: 200 OK code: 200 duration: "" @@ -2850,9 +2817,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/c298ea6d-288f-4c91-8fbf-7660fb9ca998 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/d58a764e-256f-4c72-a2b1-1243029b626e method: DELETE response: body: "" @@ -2862,7 +2829,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:01 GMT + - Fri, 27 Oct 2023 09:02:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2872,7 +2839,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c1ba544-7fa0-48dc-8e87-3c471b443c6c + - 9d5d720c-94a2-4a18-bff5-5e95d02290b1 status: 204 No Content code: 204 duration: "" @@ -2881,12 +2848,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/5eeb3b25-340f-4e06-b10d-1098a45470d8 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/f5c121fb-bc6e-4282-8c9c-2433130e4b0d method: GET response: - body: '{"address":null,"created_at":"2023-10-23T06:49:07.693022Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","ipam_config":null,"mac_address":"02:00:00:14:5E:C0","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","status":"ready","updated_at":"2023-10-23T06:49:14.785590Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T09:01:50.606736Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T09:01:42.479163Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:42.479163Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","ipam_config":null,"mac_address":"02:00:00:14:74:05","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","status":"ready","updated_at":"2023-10-27T09:01:54.861866Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -2895,7 +2862,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:01 GMT + - Fri, 27 Oct 2023 09:02:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2905,7 +2872,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d82f913-a0a2-4c36-9968-6c2aacfa1e48 + - 2cc68df0-de11-4ee2-b1c8-f89f03e74048 status: 200 OK code: 200 duration: "" @@ -2914,12 +2881,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/5eeb3b25-340f-4e06-b10d-1098a45470d8 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/f5c121fb-bc6e-4282-8c9c-2433130e4b0d method: GET response: - body: '{"address":null,"created_at":"2023-10-23T06:49:07.693022Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","ipam_config":null,"mac_address":"02:00:00:14:5E:C0","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","status":"ready","updated_at":"2023-10-23T06:49:14.785590Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T09:01:50.606736Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T09:01:42.479163Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:42.479163Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","ipam_config":null,"mac_address":"02:00:00:14:74:05","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","status":"ready","updated_at":"2023-10-27T09:01:54.861866Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -2928,7 +2895,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:01 GMT + - Fri, 27 Oct 2023 09:02:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2938,7 +2905,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7cf62c3-9d23-4ede-a479-c11c195e7310 + - f6d8d70b-7fd7-4d20-a93b-ed22e5a46321 status: 200 OK code: 200 duration: "" @@ -2947,26 +2914,26 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152 method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-23T06:49:02.173512+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-intelligent-wu","id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:01:44.938021+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-wonderful-heisenberg","id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1402","node_id":"25","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:03:d7","maintenances":[],"modification_date":"2023-10-23T06:49:15.994601+00:00","name":"tf-srv-intelligent-wu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.70.54.49","private_nics":[{"creation_date":"2023-10-23T06:49:20.076461+00:00","id":"c20a2ee0-5a33-4dca-8c27-99737557de8b","mac_address":"02:00:00:14:5e:c1","modification_date":"2023-10-23T06:49:51.552219+00:00","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","server_id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"fa78263d-512e-45c9-aba0-3e6aa6e527be","name":"tf-sg-nostalgic-jang"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-23T06:49:02.173512+00:00","export_uri":null,"id":"76b13f47-0510-4cf0-8f21-ca8a00e26062","modification_date":"2023-10-23T06:49:02.173512+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","name":"tf-srv-intelligent-wu"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"101","node_id":"7","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bd:31","maintenances":[],"modification_date":"2023-10-27T09:01:57.232719+00:00","name":"tf-srv-wonderful-heisenberg","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.80.13","private_nics":[{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:32.886490+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","name":"tf-sg-quirky-faraday"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:01:44.938021+00:00","export_uri":null,"id":"164fad99-13b2-44e8-ba8c-883cf6f09beb","modification_date":"2023-10-27T09:01:44.938021+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","name":"tf-srv-wonderful-heisenberg"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3158" + - "3174" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:02 GMT + - Fri, 27 Oct 2023 09:02:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2976,7 +2943,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c2372a2-3d46-4892-b3fa-b4bff7cb5517 + - 3b4e0aec-b543-4a72-b499-633a53d9fe32 status: 200 OK code: 200 duration: "" @@ -2985,9 +2952,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/5eeb3b25-340f-4e06-b10d-1098a45470d8?cleanup_dhcp=true + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/f5c121fb-bc6e-4282-8c9c-2433130e4b0d?cleanup_dhcp=true method: DELETE response: body: "" @@ -2997,7 +2964,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:02 GMT + - Fri, 27 Oct 2023 09:02:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3007,7 +2974,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61b84df5-57eb-4651-b89f-149f6cdb6a01 + - 727bc7fc-e12e-4975-b44f-2fe362f3529a status: 204 No Content code: 204 duration: "" @@ -3016,12 +2983,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/5eeb3b25-340f-4e06-b10d-1098a45470d8 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/f5c121fb-bc6e-4282-8c9c-2433130e4b0d method: GET response: - body: '{"address":null,"created_at":"2023-10-23T06:49:07.693022Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-23T06:49:00.416583Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-23T06:49:00.416583Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","ipam_config":null,"mac_address":"02:00:00:14:5E:C0","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","status":"detaching","updated_at":"2023-10-23T06:50:02.042192Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T09:01:50.606736Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T09:01:42.479163Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T09:01:42.479163Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","ipam_config":null,"mac_address":"02:00:00:14:74:05","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","status":"detaching","updated_at":"2023-10-27T09:02:41.373091Z","zone":"fr-par-1"}' headers: Content-Length: - "1000" @@ -3030,7 +2997,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:02 GMT + - Fri, 27 Oct 2023 09:02:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3040,7 +3007,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82395623-4da9-420b-96ac-c73b64f2ba2e + - 73375278-d093-48c7-92de-78a8c1b6122e status: 200 OK code: 200 duration: "" @@ -3051,12 +3018,12 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152/action method: POST response: - body: '{"task":{"description":"server_poweroff","href_from":"/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5/action","href_result":"/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5","id":"d1ab1c54-2ee4-42b0-8e08-c6416198e80f","started_at":"2023-10-23T06:50:02.793199+00:00","status":"pending","terminated_at":null}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152/action","href_result":"/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","id":"83a9ce10-0d23-4c15-8d0f-54e83b20bb98","started_at":"2023-10-27T09:02:41.659123+00:00","status":"pending","terminated_at":null}}' headers: Content-Length: - "317" @@ -3065,9 +3032,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:02 GMT + - Fri, 27 Oct 2023 09:02:41 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d1ab1c54-2ee4-42b0-8e08-c6416198e80f + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/83a9ce10-0d23-4c15-8d0f-54e83b20bb98 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3077,7 +3044,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74ee54e8-a040-4274-a95a-31a1f7d7f41a + - 58982bcf-5cde-4e9b-ac80-4539f0e1eb51 status: 202 Accepted code: 202 duration: "" @@ -3086,26 +3053,26 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-23T06:49:02.173512+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-intelligent-wu","id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:01:44.938021+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-wonderful-heisenberg","id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1402","node_id":"25","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:03:d7","maintenances":[],"modification_date":"2023-10-23T06:50:02.079666+00:00","name":"tf-srv-intelligent-wu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.70.54.49","private_nics":[{"creation_date":"2023-10-23T06:49:20.076461+00:00","id":"c20a2ee0-5a33-4dca-8c27-99737557de8b","mac_address":"02:00:00:14:5e:c1","modification_date":"2023-10-23T06:49:51.552219+00:00","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","server_id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"fa78263d-512e-45c9-aba0-3e6aa6e527be","name":"tf-sg-nostalgic-jang"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-23T06:49:02.173512+00:00","export_uri":null,"id":"76b13f47-0510-4cf0-8f21-ca8a00e26062","modification_date":"2023-10-23T06:49:02.173512+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","name":"tf-srv-intelligent-wu"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"101","node_id":"7","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bd:31","maintenances":[],"modification_date":"2023-10-27T09:02:41.354075+00:00","name":"tf-srv-wonderful-heisenberg","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.80.13","private_nics":[{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:32.886490+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","name":"tf-sg-quirky-faraday"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:01:44.938021+00:00","export_uri":null,"id":"164fad99-13b2-44e8-ba8c-883cf6f09beb","modification_date":"2023-10-27T09:01:44.938021+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","name":"tf-srv-wonderful-heisenberg"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3126" + - "3142" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:03 GMT + - Fri, 27 Oct 2023 09:02:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3115,7 +3082,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6f086e2-2c3e-4040-8e13-a3873ac467e3 + - 011c474c-4750-442d-8aae-ffb7611ce01a status: 200 OK code: 200 duration: "" @@ -3124,12 +3091,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/5eeb3b25-340f-4e06-b10d-1098a45470d8 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/f5c121fb-bc6e-4282-8c9c-2433130e4b0d method: GET response: - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"5eeb3b25-340f-4e06-b10d-1098a45470d8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"f5c121fb-bc6e-4282-8c9c-2433130e4b0d","type":"not_found"}' headers: Content-Length: - "136" @@ -3138,7 +3105,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:07 GMT + - Fri, 27 Oct 2023 09:02:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3148,7 +3115,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11f06432-33fb-49e7-9a79-9a2c0623dfe8 + - 2fa8992e-e423-421e-a471-0c4bff2d1664 status: 404 Not Found code: 404 duration: "" @@ -3157,12 +3124,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2d37d34b-7e78-4592-b39f-6adb62147e09 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4f732be2-2bec-4461-bbbe-b947cc738b01 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-23T06:49:01.203511Z","gateway_networks":[],"id":"2d37d34b-7e78-4592-b39f-6adb62147e09","ip":{"address":"51.158.114.104","created_at":"2023-10-23T06:49:00.957190Z","gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"a7332263-ec06-45f0-8553-608b5579a3e3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"104-114-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-23T06:49:00.957190Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-23T06:49:14.933740Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:01:43.234821Z","gateway_networks":[],"id":"4f732be2-2bec-4461-bbbe-b947cc738b01","ip":{"address":"163.172.134.68","created_at":"2023-10-27T09:01:43.051349Z","gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"6cf1b756-e3a7-4023-ab09-189ee80e5c47","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"68-134-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:01:43.051349Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:01:55.050044Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "970" @@ -3171,7 +3138,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:07 GMT + - Fri, 27 Oct 2023 09:02:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3181,7 +3148,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23362894-2e17-4224-881f-a8debafc927e + - 1a359bfc-6255-4e0e-99ee-3736b3979f1c status: 200 OK code: 200 duration: "" @@ -3190,12 +3157,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/060f8446-d73c-4c83-a8a1-a17a1d32bc17 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c method: DELETE response: - body: '{"message":"resource is not found","resource":"dhcp","resource_id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","type":"not_found"}' + body: '{"message":"resource is not found","resource":"dhcp","resource_id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","type":"not_found"}' headers: Content-Length: - "125" @@ -3204,7 +3171,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:07 GMT + - Fri, 27 Oct 2023 09:02:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3214,7 +3181,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 494c8e96-991b-4d38-830c-c92bde95772a + - bb645cc6-7b2e-4782-8c36-dfe36b64aa18 status: 404 Not Found code: 404 duration: "" @@ -3223,12 +3190,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2d37d34b-7e78-4592-b39f-6adb62147e09 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4f732be2-2bec-4461-bbbe-b947cc738b01 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-23T06:49:01.203511Z","gateway_networks":[],"id":"2d37d34b-7e78-4592-b39f-6adb62147e09","ip":{"address":"51.158.114.104","created_at":"2023-10-23T06:49:00.957190Z","gateway_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","id":"a7332263-ec06-45f0-8553-608b5579a3e3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"104-114-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-23T06:49:00.957190Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-23T06:49:14.933740Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:01:43.234821Z","gateway_networks":[],"id":"4f732be2-2bec-4461-bbbe-b947cc738b01","ip":{"address":"163.172.134.68","created_at":"2023-10-27T09:01:43.051349Z","gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"6cf1b756-e3a7-4023-ab09-189ee80e5c47","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"68-134-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:01:43.051349Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:01:55.050044Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "970" @@ -3237,7 +3204,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:07 GMT + - Fri, 27 Oct 2023 09:02:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3247,7 +3214,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0fd06948-486c-4ec8-855d-cc67b37c5eba + - ad24ece2-de61-4364-89b2-1c443cd8312d status: 200 OK code: 200 duration: "" @@ -3256,9 +3223,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2d37d34b-7e78-4592-b39f-6adb62147e09?cleanup_dhcp=false + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4f732be2-2bec-4461-bbbe-b947cc738b01?cleanup_dhcp=false method: DELETE response: body: "" @@ -3268,7 +3235,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:07 GMT + - Fri, 27 Oct 2023 09:02:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3278,7 +3245,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb8aa760-32fb-403a-a8fa-639e3c9d9549 + - 6970d052-8b06-4e2f-8b3b-4d840101a443 status: 204 No Content code: 204 duration: "" @@ -3287,12 +3254,83 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2d37d34b-7e78-4592-b39f-6adb62147e09 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4f732be2-2bec-4461-bbbe-b947cc738b01 method: GET response: - body: '{"message":"resource is not found","resource":"gateway","resource_id":"2d37d34b-7e78-4592-b39f-6adb62147e09","type":"not_found"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:01:43.234821Z","gateway_networks":[],"id":"4f732be2-2bec-4461-bbbe-b947cc738b01","ip":{"address":"163.172.134.68","created_at":"2023-10-27T09:01:43.051349Z","gateway_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","id":"6cf1b756-e3a7-4023-ab09-189ee80e5c47","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"68-134-172-163.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:01:43.051349Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"deleting","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:02:46.613784Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + headers: + Content-Length: + - "971" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Oct 2023 09:02:46 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aca98fbe-0c01-4c9d-ab4b-f9de2ce4e0d2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152 + method: GET + response: + body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON + scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:01:44.938021+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-wonderful-heisenberg","id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"101","node_id":"7","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bd:31","maintenances":[],"modification_date":"2023-10-27T09:02:41.354075+00:00","name":"tf-srv-wonderful-heisenberg","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.80.13","private_nics":[{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:32.886490+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","name":"tf-sg-quirky-faraday"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:01:44.938021+00:00","export_uri":null,"id":"164fad99-13b2-44e8-ba8c-883cf6f09beb","modification_date":"2023-10-27T09:01:44.938021+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","name":"tf-srv-wonderful-heisenberg"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "3142" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Oct 2023 09:02:46 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 38612db4-2ebe-4331-b4b3-d2dd96c087af + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4f732be2-2bec-4461-bbbe-b947cc738b01 + method: GET + response: + body: '{"message":"resource is not found","resource":"gateway","resource_id":"4f732be2-2bec-4461-bbbe-b947cc738b01","type":"not_found"}' headers: Content-Length: - "128" @@ -3301,7 +3339,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:07 GMT + - Fri, 27 Oct 2023 09:02:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3311,7 +3349,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33865642-47f8-4e21-91cb-7b67121928c1 + - 5400f5fc-d991-457b-8bad-d7f6699e4cca status: 404 Not Found code: 404 duration: "" @@ -3320,9 +3358,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/a7332263-ec06-45f0-8553-608b5579a3e3 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/6cf1b756-e3a7-4023-ab09-189ee80e5c47 method: DELETE response: body: "" @@ -3332,7 +3370,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:07 GMT + - Fri, 27 Oct 2023 09:02:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3342,7 +3380,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ccf79a2-4f1b-493a-95bd-1e72d853fef1 + - 244bbaa4-c930-47c9-80c4-4eca79701592 status: 204 No Content code: 204 duration: "" @@ -3351,26 +3389,140 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152 + method: GET + response: + body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON + scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:01:44.938021+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-wonderful-heisenberg","id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"101","node_id":"7","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bd:31","maintenances":[],"modification_date":"2023-10-27T09:02:41.354075+00:00","name":"tf-srv-wonderful-heisenberg","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.80.13","private_nics":[{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:32.886490+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","name":"tf-sg-quirky-faraday"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:01:44.938021+00:00","export_uri":null,"id":"164fad99-13b2-44e8-ba8c-883cf6f09beb","modification_date":"2023-10-27T09:01:44.938021+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","name":"tf-srv-wonderful-heisenberg"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "3142" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Oct 2023 09:02:52 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 87ca9118-031b-4d5e-b849-3846d62b6a07 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152 + method: GET + response: + body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON + scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:01:44.938021+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-wonderful-heisenberg","id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"101","node_id":"7","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bd:31","maintenances":[],"modification_date":"2023-10-27T09:02:41.354075+00:00","name":"tf-srv-wonderful-heisenberg","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.80.13","private_nics":[{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:32.886490+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","name":"tf-sg-quirky-faraday"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:01:44.938021+00:00","export_uri":null,"id":"164fad99-13b2-44e8-ba8c-883cf6f09beb","modification_date":"2023-10-27T09:01:44.938021+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","name":"tf-srv-wonderful-heisenberg"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "3142" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Oct 2023 09:02:57 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9d52aa4d-25b5-4513-9dc8-99e79fabb003 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152 + method: GET + response: + body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON + scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:01:44.938021+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-wonderful-heisenberg","id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"101","node_id":"7","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bd:31","maintenances":[],"modification_date":"2023-10-27T09:02:41.354075+00:00","name":"tf-srv-wonderful-heisenberg","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.80.13","private_nics":[{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:32.886490+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","name":"tf-sg-quirky-faraday"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:01:44.938021+00:00","export_uri":null,"id":"164fad99-13b2-44e8-ba8c-883cf6f09beb","modification_date":"2023-10-27T09:01:44.938021+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","name":"tf-srv-wonderful-heisenberg"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "3142" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Oct 2023 09:03:02 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4386159f-6d2f-4057-95c6-fb6a8500291d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-23T06:49:02.173512+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-intelligent-wu","id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:01:44.938021+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-wonderful-heisenberg","id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1402","node_id":"25","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:03:d7","maintenances":[],"modification_date":"2023-10-23T06:50:02.079666+00:00","name":"tf-srv-intelligent-wu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.70.54.49","private_nics":[{"creation_date":"2023-10-23T06:49:20.076461+00:00","id":"c20a2ee0-5a33-4dca-8c27-99737557de8b","mac_address":"02:00:00:14:5e:c1","modification_date":"2023-10-23T06:49:51.552219+00:00","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","server_id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"fa78263d-512e-45c9-aba0-3e6aa6e527be","name":"tf-sg-nostalgic-jang"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-23T06:49:02.173512+00:00","export_uri":null,"id":"76b13f47-0510-4cf0-8f21-ca8a00e26062","modification_date":"2023-10-23T06:49:02.173512+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","name":"tf-srv-intelligent-wu"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"101","node_id":"7","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bd:31","maintenances":[],"modification_date":"2023-10-27T09:02:41.354075+00:00","name":"tf-srv-wonderful-heisenberg","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.80.13","private_nics":[{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:32.886490+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","name":"tf-sg-quirky-faraday"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:01:44.938021+00:00","export_uri":null,"id":"164fad99-13b2-44e8-ba8c-883cf6f09beb","modification_date":"2023-10-27T09:01:44.938021+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","name":"tf-srv-wonderful-heisenberg"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3126" + - "3142" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:08 GMT + - Fri, 27 Oct 2023 09:03:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3380,7 +3532,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79e2897b-fac3-45ed-87c5-5e9cb9b19515 + - d32b864b-c124-449b-a0e7-3533df81ad8f status: 200 OK code: 200 duration: "" @@ -3389,26 +3541,26 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-23T06:49:02.173512+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-intelligent-wu","id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:01:44.938021+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-wonderful-heisenberg","id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1402","node_id":"25","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:03:d7","maintenances":[],"modification_date":"2023-10-23T06:50:02.079666+00:00","name":"tf-srv-intelligent-wu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.70.54.49","private_nics":[{"creation_date":"2023-10-23T06:49:20.076461+00:00","id":"c20a2ee0-5a33-4dca-8c27-99737557de8b","mac_address":"02:00:00:14:5e:c1","modification_date":"2023-10-23T06:49:51.552219+00:00","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","server_id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"fa78263d-512e-45c9-aba0-3e6aa6e527be","name":"tf-sg-nostalgic-jang"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-23T06:49:02.173512+00:00","export_uri":null,"id":"76b13f47-0510-4cf0-8f21-ca8a00e26062","modification_date":"2023-10-23T06:49:02.173512+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","name":"tf-srv-intelligent-wu"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"101","node_id":"7","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bd:31","maintenances":[],"modification_date":"2023-10-27T09:02:41.354075+00:00","name":"tf-srv-wonderful-heisenberg","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.80.13","private_nics":[{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:32.886490+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","name":"tf-sg-quirky-faraday"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:01:44.938021+00:00","export_uri":null,"id":"164fad99-13b2-44e8-ba8c-883cf6f09beb","modification_date":"2023-10-27T09:01:44.938021+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","name":"tf-srv-wonderful-heisenberg"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3126" + - "3142" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:13 GMT + - Fri, 27 Oct 2023 09:03:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3418,7 +3570,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a279a341-3fe3-4aaa-9864-9409dfd5efc2 + - eacf470c-089b-4d30-9d1a-fee3ef4e127f status: 200 OK code: 200 duration: "" @@ -3427,26 +3579,26 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-23T06:49:02.173512+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-intelligent-wu","id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:01:44.938021+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-wonderful-heisenberg","id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1402","node_id":"25","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:03:d7","maintenances":[],"modification_date":"2023-10-23T06:50:02.079666+00:00","name":"tf-srv-intelligent-wu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.70.54.49","private_nics":[{"creation_date":"2023-10-23T06:49:20.076461+00:00","id":"c20a2ee0-5a33-4dca-8c27-99737557de8b","mac_address":"02:00:00:14:5e:c1","modification_date":"2023-10-23T06:49:51.552219+00:00","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","server_id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"fa78263d-512e-45c9-aba0-3e6aa6e527be","name":"tf-sg-nostalgic-jang"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-23T06:49:02.173512+00:00","export_uri":null,"id":"76b13f47-0510-4cf0-8f21-ca8a00e26062","modification_date":"2023-10-23T06:49:02.173512+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","name":"tf-srv-intelligent-wu"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"101","node_id":"7","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bd:31","maintenances":[],"modification_date":"2023-10-27T09:02:41.354075+00:00","name":"tf-srv-wonderful-heisenberg","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.80.13","private_nics":[{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:32.886490+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","name":"tf-sg-quirky-faraday"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:01:44.938021+00:00","export_uri":null,"id":"164fad99-13b2-44e8-ba8c-883cf6f09beb","modification_date":"2023-10-27T09:01:44.938021+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","name":"tf-srv-wonderful-heisenberg"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3126" + - "3142" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:18 GMT + - Fri, 27 Oct 2023 09:03:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3456,7 +3608,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03f9d1d5-fdd7-42e1-bedf-f77324109d7e + - 2e035fc6-cb02-42c8-8b03-80bad4f4c764 status: 200 OK code: 200 duration: "" @@ -3465,26 +3617,26 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-23T06:49:02.173512+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-intelligent-wu","id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:01:44.938021+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-wonderful-heisenberg","id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1402","node_id":"25","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:03:d7","maintenances":[],"modification_date":"2023-10-23T06:50:02.079666+00:00","name":"tf-srv-intelligent-wu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.70.54.49","private_nics":[{"creation_date":"2023-10-23T06:49:20.076461+00:00","id":"c20a2ee0-5a33-4dca-8c27-99737557de8b","mac_address":"02:00:00:14:5e:c1","modification_date":"2023-10-23T06:49:51.552219+00:00","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","server_id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"fa78263d-512e-45c9-aba0-3e6aa6e527be","name":"tf-sg-nostalgic-jang"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-23T06:49:02.173512+00:00","export_uri":null,"id":"76b13f47-0510-4cf0-8f21-ca8a00e26062","modification_date":"2023-10-23T06:49:02.173512+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","name":"tf-srv-intelligent-wu"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"101","node_id":"7","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bd:31","maintenances":[],"modification_date":"2023-10-27T09:02:41.354075+00:00","name":"tf-srv-wonderful-heisenberg","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.80.13","private_nics":[{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:32.886490+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","name":"tf-sg-quirky-faraday"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:01:44.938021+00:00","export_uri":null,"id":"164fad99-13b2-44e8-ba8c-883cf6f09beb","modification_date":"2023-10-27T09:01:44.938021+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","name":"tf-srv-wonderful-heisenberg"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3126" + - "3142" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:23 GMT + - Fri, 27 Oct 2023 09:03:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3494,7 +3646,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8281a629-4ce0-4ebd-86d2-06af64b6b5bc + - 73e9c89f-3677-4456-8f06-e3af6b0d9a98 status: 200 OK code: 200 duration: "" @@ -3503,26 +3655,26 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-23T06:49:02.173512+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-intelligent-wu","id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:01:44.938021+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-wonderful-heisenberg","id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1402","node_id":"25","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:03:d7","maintenances":[],"modification_date":"2023-10-23T06:50:02.079666+00:00","name":"tf-srv-intelligent-wu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.70.54.49","private_nics":[{"creation_date":"2023-10-23T06:49:20.076461+00:00","id":"c20a2ee0-5a33-4dca-8c27-99737557de8b","mac_address":"02:00:00:14:5e:c1","modification_date":"2023-10-23T06:49:51.552219+00:00","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","server_id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"fa78263d-512e-45c9-aba0-3e6aa6e527be","name":"tf-sg-nostalgic-jang"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-23T06:49:02.173512+00:00","export_uri":null,"id":"76b13f47-0510-4cf0-8f21-ca8a00e26062","modification_date":"2023-10-23T06:49:02.173512+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","name":"tf-srv-intelligent-wu"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"101","node_id":"7","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bd:31","maintenances":[],"modification_date":"2023-10-27T09:02:41.354075+00:00","name":"tf-srv-wonderful-heisenberg","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.80.13","private_nics":[{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:32.886490+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","name":"tf-sg-quirky-faraday"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:01:44.938021+00:00","export_uri":null,"id":"164fad99-13b2-44e8-ba8c-883cf6f09beb","modification_date":"2023-10-27T09:01:44.938021+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","name":"tf-srv-wonderful-heisenberg"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3126" + - "3142" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:29 GMT + - Fri, 27 Oct 2023 09:03:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3532,7 +3684,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a7bdfab-6273-4f84-8535-3c6a7d3be7e5 + - 83921666-3fed-4764-b034-beae52d66a40 status: 200 OK code: 200 duration: "" @@ -3541,26 +3693,26 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152 method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-23T06:49:02.173512+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-intelligent-wu","id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:01:44.938021+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-wonderful-heisenberg","id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:03:d7","maintenances":[],"modification_date":"2023-10-23T06:50:32.452682+00:00","name":"tf-srv-intelligent-wu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2023-10-23T06:49:20.076461+00:00","id":"c20a2ee0-5a33-4dca-8c27-99737557de8b","mac_address":"02:00:00:14:5e:c1","modification_date":"2023-10-23T06:49:51.552219+00:00","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","server_id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"fa78263d-512e-45c9-aba0-3e6aa6e527be","name":"tf-sg-nostalgic-jang"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-23T06:49:02.173512+00:00","export_uri":null,"id":"76b13f47-0510-4cf0-8f21-ca8a00e26062","modification_date":"2023-10-23T06:49:02.173512+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","name":"tf-srv-intelligent-wu"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:bd:31","maintenances":[],"modification_date":"2023-10-27T09:03:32.176695+00:00","name":"tf-srv-wonderful-heisenberg","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:32.886490+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","name":"tf-sg-quirky-faraday"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:01:44.938021+00:00","export_uri":null,"id":"164fad99-13b2-44e8-ba8c-883cf6f09beb","modification_date":"2023-10-27T09:01:44.938021+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","name":"tf-srv-wonderful-heisenberg"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3004" + - "3022" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:34 GMT + - Fri, 27 Oct 2023 09:03:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3570,7 +3722,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a129a87-a7bd-4e45-9455-4d34c2c1763b + - de4a739b-c68f-4591-8201-745dfefba57d status: 200 OK code: 200 duration: "" @@ -3579,12 +3731,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-23T06:49:20.076461+00:00","id":"c20a2ee0-5a33-4dca-8c27-99737557de8b","mac_address":"02:00:00:14:5e:c1","modification_date":"2023-10-23T06:49:51.552219+00:00","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","server_id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:32.886490+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "381" @@ -3593,9 +3745,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:34 GMT + - Fri, 27 Oct 2023 09:03:33 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -3606,7 +3758,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f75c79b-99a3-441c-8629-7bf490dbd76b + - 11a365c9-3b1c-4264-a429-b720b7624f17 X-Total-Count: - "1" status: 200 OK @@ -3617,12 +3769,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5/private_nics/c20a2ee0-5a33-4dca-8c27-99737557de8b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152/private_nics/8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-23T06:49:20.076461+00:00","id":"c20a2ee0-5a33-4dca-8c27-99737557de8b","mac_address":"02:00:00:14:5e:c1","modification_date":"2023-10-23T06:49:51.552219+00:00","private_network_id":"41c8b3b2-3199-44a5-a72c-b542c635bf8f","server_id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:02:01.597216+00:00","id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","mac_address":"02:00:00:14:74:06","modification_date":"2023-10-27T09:02:32.886490+00:00","private_network_id":"bd471267-f3fa-4cb3-8b37-7aa3d08a5f36","server_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "378" @@ -3631,7 +3783,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:34 GMT + - Fri, 27 Oct 2023 09:03:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3641,7 +3793,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd8b4f46-5bc9-414c-8874-3d2adff0b212 + - d866bc88-33ee-46b9-9e3d-c8032ed25fc4 status: 200 OK code: 200 duration: "" @@ -3650,9 +3802,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5/private_nics/c20a2ee0-5a33-4dca-8c27-99737557de8b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152/private_nics/8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8 method: DELETE response: body: "" @@ -3660,7 +3812,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Mon, 23 Oct 2023 06:50:34 GMT + - Fri, 27 Oct 2023 09:03:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3670,7 +3822,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68d549ec-abd0-4fd0-b79e-0fd12a696b8d + - 95f4f131-dbb9-45d2-8dd9-88b9e89b923f status: 204 No Content code: 204 duration: "" @@ -3679,12 +3831,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5/private_nics/c20a2ee0-5a33-4dca-8c27-99737557de8b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152/private_nics/8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8 method: GET response: - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"c20a2ee0-5a33-4dca-8c27-99737557de8b","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"8359c50e-d4a8-4ec7-ba9d-50f74fca6eb8","type":"not_found"}' headers: Content-Length: - "148" @@ -3693,7 +3845,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:35 GMT + - Fri, 27 Oct 2023 09:03:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3703,7 +3855,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83cb6dc6-57c2-4545-a809-1bd891ae961c + - ce06c184-8c5e-437b-9be0-9f7629b687d5 status: 404 Not Found code: 404 duration: "" @@ -3712,26 +3864,26 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152 method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-23T06:49:02.173512+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-intelligent-wu","id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:01:44.938021+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-wonderful-heisenberg","id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:03:d7","maintenances":[],"modification_date":"2023-10-23T06:50:32.452682+00:00","name":"tf-srv-intelligent-wu","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"fa78263d-512e-45c9-aba0-3e6aa6e527be","name":"tf-sg-nostalgic-jang"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-23T06:49:02.173512+00:00","export_uri":null,"id":"76b13f47-0510-4cf0-8f21-ca8a00e26062","modification_date":"2023-10-23T06:49:02.173512+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","name":"tf-srv-intelligent-wu"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:bd:31","maintenances":[],"modification_date":"2023-10-27T09:03:32.176695+00:00","name":"tf-srv-wonderful-heisenberg","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"89c3704f-8b48-43fa-b54a-78c1718d1557","name":"tf-sg-quirky-faraday"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:01:44.938021+00:00","export_uri":null,"id":"164fad99-13b2-44e8-ba8c-883cf6f09beb","modification_date":"2023-10-27T09:01:44.938021+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","name":"tf-srv-wonderful-heisenberg"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2643" + - "2661" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:35 GMT + - Fri, 27 Oct 2023 09:03:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3741,7 +3893,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76f18427-1625-43c8-bb25-b1f22f616885 + - 6f9172e2-4ccc-42a4-bd48-d00c42b91b5a status: 200 OK code: 200 duration: "" @@ -3750,9 +3902,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152 method: DELETE response: body: "" @@ -3760,7 +3912,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Mon, 23 Oct 2023 06:50:35 GMT + - Fri, 27 Oct 2023 09:03:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3770,7 +3922,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d99a392-b24f-4777-9703-6ab2e2e26d53 + - 136f8af5-28b7-4e33-a591-12af7cc40feb status: 204 No Content code: 204 duration: "" @@ -3779,12 +3931,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c290b6b-39e7-4be4-b311-4ff4a19de4c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8b4e45cc-a061-4cee-ad40-3b8bd8b8e152 method: GET response: - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"7c290b6b-39e7-4be4-b311-4ff4a19de4c5","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"8b4e45cc-a061-4cee-ad40-3b8bd8b8e152","type":"not_found"}' headers: Content-Length: - "143" @@ -3793,7 +3945,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:35 GMT + - Fri, 27 Oct 2023 09:03:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3803,7 +3955,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a37928d9-1373-4cbb-8a66-39a657f017ac + - b5165305-2836-4366-822d-fbff96498d36 status: 404 Not Found code: 404 duration: "" @@ -3812,9 +3964,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/76b13f47-0510-4cf0-8f21-ca8a00e26062 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/164fad99-13b2-44e8-ba8c-883cf6f09beb method: DELETE response: body: "" @@ -3822,7 +3974,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Mon, 23 Oct 2023 06:50:35 GMT + - Fri, 27 Oct 2023 09:03:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3832,7 +3984,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb0a8b2f-eb53-4b4b-99b2-3f36ec227100 + - c5d2587f-554b-400d-be17-477afdd1e54d status: 204 No Content code: 204 duration: "" @@ -3841,9 +3993,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/fa78263d-512e-45c9-aba0-3e6aa6e527be + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/89c3704f-8b48-43fa-b54a-78c1718d1557 method: DELETE response: body: "" @@ -3851,7 +4003,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Mon, 23 Oct 2023 06:50:35 GMT + - Fri, 27 Oct 2023 09:03:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3861,7 +4013,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dadf4771-8dbc-4c5f-bd54-b4674e90fec0 + - 79d381cf-9722-466e-b45a-981511760e8b status: 204 No Content code: 204 duration: "" @@ -3870,9 +4022,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/41c8b3b2-3199-44a5-a72c-b542c635bf8f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bd471267-f3fa-4cb3-8b37-7aa3d08a5f36 method: DELETE response: body: "" @@ -3882,7 +4034,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:36 GMT + - Fri, 27 Oct 2023 09:03:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3892,7 +4044,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5a3da83-18ba-4006-8c61-fa91511dab53 + - c7b4db13-3564-4bff-8570-dec93ae854f5 status: 204 No Content code: 204 duration: "" @@ -3901,12 +4053,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/060f8446-d73c-4c83-a8a1-a17a1d32bc17 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c method: GET response: - body: '{"message":"resource is not found","resource":"dhcp","resource_id":"060f8446-d73c-4c83-a8a1-a17a1d32bc17","type":"not_found"}' + body: '{"message":"resource is not found","resource":"dhcp","resource_id":"b4b9b3e5-cfd9-48b8-990b-a10e4d26c11c","type":"not_found"}' headers: Content-Length: - "125" @@ -3915,7 +4067,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Oct 2023 06:50:36 GMT + - Fri, 27 Oct 2023 09:03:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3925,7 +4077,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f1f52ac-de67-4e79-b399-1cef492f26e8 + - a87679cd-aa2d-4f64-bd43-0ef7965064e4 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/instance-server-private-network.cassette.yaml b/scaleway/testdata/instance-server-private-network.cassette.yaml index 00db699ee0..3a8423cb36 100644 --- a/scaleway/testdata/instance-server-private-network.cassette.yaml +++ b/scaleway/testdata/instance-server-private-network.cassette.yaml @@ -2,18 +2,18 @@ version: 1 interactions: - request: - body: '{"name":"private_network_instance","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":null,"subnets":null,"vpc_id":null}' + body: '{"name":"private_network_instance","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null,"subnets":null,"vpc_id":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"created_at":"2023-10-20T13:46:54.037849Z","dhcp_enabled":true,"id":"53b3457b-4f5f-440a-ac83-2659edfd0347","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T13:46:54.037849Z","id":"6b296a55-4d4e-4b62-be14-60b113a92ffd","subnet":"172.16.92.0/22","updated_at":"2023-10-20T13:46:54.037849Z"},{"created_at":"2023-10-20T13:46:54.037849Z","id":"21b82cbf-0071-490f-9f5c-b19ecbc45038","subnet":"fd5f:519c:6d46:8a45::/64","updated_at":"2023-10-20T13:46:54.037849Z"}],"tags":[],"updated_at":"2023-10-20T13:46:54.037849Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2023-10-27T07:45:58.532342Z","dhcp_enabled":true,"id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","name":"private_network_instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:45:58.532342Z","id":"a2cc2e01-2b23-4349-92fa-d0837a0e8682","subnet":"172.16.72.0/22","updated_at":"2023-10-27T07:45:58.532342Z"},{"created_at":"2023-10-27T07:45:58.532342Z","id":"4ae52286-6b20-477c-84e8-f93697ecfa59","subnet":"fd46:78ab:30b8:daea::/64","updated_at":"2023-10-27T07:45:58.532342Z"}],"tags":[],"updated_at":"2023-10-27T07:45:58.532342Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "725" @@ -22,7 +22,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:46:54 GMT + - Fri, 27 Oct 2023 07:45:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa9c1941-fdd1-47f6-80d6-6f18bb42d69b + - 8e48cfd0-79f0-4bc1-8220-6b5484035a4a status: 200 OK code: 200 duration: "" @@ -41,12 +41,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/53b3457b-4f5f-440a-ac83-2659edfd0347 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0a06e430-cacb-4609-8ba3-57affcbcc2db method: GET response: - body: '{"created_at":"2023-10-20T13:46:54.037849Z","dhcp_enabled":true,"id":"53b3457b-4f5f-440a-ac83-2659edfd0347","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T13:46:54.037849Z","id":"6b296a55-4d4e-4b62-be14-60b113a92ffd","subnet":"172.16.92.0/22","updated_at":"2023-10-20T13:46:54.037849Z"},{"created_at":"2023-10-20T13:46:54.037849Z","id":"21b82cbf-0071-490f-9f5c-b19ecbc45038","subnet":"fd5f:519c:6d46:8a45::/64","updated_at":"2023-10-20T13:46:54.037849Z"}],"tags":[],"updated_at":"2023-10-20T13:46:54.037849Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2023-10-27T07:45:58.532342Z","dhcp_enabled":true,"id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","name":"private_network_instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:45:58.532342Z","id":"a2cc2e01-2b23-4349-92fa-d0837a0e8682","subnet":"172.16.72.0/22","updated_at":"2023-10-27T07:45:58.532342Z"},{"created_at":"2023-10-27T07:45:58.532342Z","id":"4ae52286-6b20-477c-84e8-f93697ecfa59","subnet":"fd46:78ab:30b8:daea::/64","updated_at":"2023-10-27T07:45:58.532342Z"}],"tags":[],"updated_at":"2023-10-27T07:45:58.532342Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "725" @@ -55,7 +55,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:46:54 GMT + - Fri, 27 Oct 2023 07:45:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,7 +65,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 393e7fe0-6436-4138-bba2-28e8b62b4409 + - df8e3c13-a5ad-47e6-8976-9cacb2ffea66 status: 200 OK code: 200 duration: "" @@ -74,7 +74,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=created_at_asc&type=instance_local&zone=fr-par-2 method: GET @@ -88,7 +88,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:46:54 GMT + - Fri, 27 Oct 2023 07:45:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -98,7 +98,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4672d032-2d1f-476b-ac37-0f94d588f02b + - 4234e75b-68ff-4017-936d-05b629c45410 status: 200 OK code: 200 duration: "" @@ -107,7 +107,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-2/products/servers?page=1 method: GET @@ -121,7 +121,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:46:54 GMT + - Fri, 27 Oct 2023 07:45:59 GMT Link: - ; rel="next",; rel="last" @@ -134,7 +134,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7cdc4f5c-c2da-46af-84ac-0283531b15c5 + - 0390d863-f162-46a6-bcb1-764b3ee36d89 X-Total-Count: - "54" status: 200 OK @@ -145,7 +145,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-2/products/servers?page=2 method: GET @@ -159,7 +159,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:46:55 GMT + - Fri, 27 Oct 2023 07:45:59 GMT Link: - ; rel="first",; rel="previous",; rel="last" @@ -172,42 +172,42 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc3057ea-c2e1-418b-9813-05b4fd3ec229 + - a39965b3-6048-4ee0-a06a-9158f610352b X-Total-Count: - "54" status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-srv-great-newton","dynamic_ip_required":false,"routed_ip_enabled":false,"commercial_type":"DEV1-S","image":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-srv-affectionate-wilbur","dynamic_ip_required":false,"routed_ip_enabled":false,"commercial_type":"DEV1-S","image":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers method: POST response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"e6a56379-9ef4-48d4-a1d2-12b475e0fed8","initrd":"http://10.197.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.197.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:46:55.449727+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-great-newton","id":"beef1307-ffb4-454e-9911-1b9a4a827e97","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:45:59.735913+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-affectionate-wilbur","id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"dd333413-110e-4533-b991-05c4b0fbf017","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:20:88:cd","maintenances":[],"modification_date":"2023-10-20T13:46:55.449727+00:00","name":"tf-srv-great-newton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:46:55.449727+00:00","export_uri":null,"id":"699f8828-1e31-4f6b-b0dc-85ca82b464cc","modification_date":"2023-10-20T13:46:55.449727+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"beef1307-ffb4-454e-9911-1b9a4a827e97","name":"tf-srv-great-newton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:21:5d:a1","maintenances":[],"modification_date":"2023-10-27T07:45:59.735913+00:00","name":"tf-srv-affectionate-wilbur","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"9c7310aa-d544-4ceb-916c-cc2b25f7c8e1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:45:59.735913+00:00","export_uri":null,"id":"1612f013-75ba-4c5a-813e-431e459954e1","modification_date":"2023-10-27T07:45:59.735913+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","name":"tf-srv-affectionate-wilbur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "2639" + - "2660" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:46:55 GMT + - Fri, 27 Oct 2023 07:46:00 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97 + - https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -217,7 +217,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e1fb0c4-869d-4222-8047-25b1d6d8bb24 + - c869c4c1-967c-472b-b8cd-25f4a08cf684 status: 201 Created code: 201 duration: "" @@ -226,27 +226,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"e6a56379-9ef4-48d4-a1d2-12b475e0fed8","initrd":"http://10.197.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.197.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:46:55.449727+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-great-newton","id":"beef1307-ffb4-454e-9911-1b9a4a827e97","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:45:59.735913+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-affectionate-wilbur","id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"dd333413-110e-4533-b991-05c4b0fbf017","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:20:88:cd","maintenances":[],"modification_date":"2023-10-20T13:46:55.449727+00:00","name":"tf-srv-great-newton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:46:55.449727+00:00","export_uri":null,"id":"699f8828-1e31-4f6b-b0dc-85ca82b464cc","modification_date":"2023-10-20T13:46:55.449727+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"beef1307-ffb4-454e-9911-1b9a4a827e97","name":"tf-srv-great-newton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:21:5d:a1","maintenances":[],"modification_date":"2023-10-27T07:45:59.735913+00:00","name":"tf-srv-affectionate-wilbur","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"9c7310aa-d544-4ceb-916c-cc2b25f7c8e1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:45:59.735913+00:00","export_uri":null,"id":"1612f013-75ba-4c5a-813e-431e459954e1","modification_date":"2023-10-27T07:45:59.735913+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","name":"tf-srv-affectionate-wilbur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "2639" + - "2660" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:46:56 GMT + - Fri, 27 Oct 2023 07:46:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -256,7 +256,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bd735ac-2037-47cb-ad17-7bdcbf688ad4 + - b151b98e-e5b5-49dc-8cce-f8f860d90f34 status: 200 OK code: 200 duration: "" @@ -265,27 +265,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"e6a56379-9ef4-48d4-a1d2-12b475e0fed8","initrd":"http://10.197.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.197.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:46:55.449727+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-great-newton","id":"beef1307-ffb4-454e-9911-1b9a4a827e97","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:45:59.735913+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-affectionate-wilbur","id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"dd333413-110e-4533-b991-05c4b0fbf017","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:20:88:cd","maintenances":[],"modification_date":"2023-10-20T13:46:55.449727+00:00","name":"tf-srv-great-newton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:46:55.449727+00:00","export_uri":null,"id":"699f8828-1e31-4f6b-b0dc-85ca82b464cc","modification_date":"2023-10-20T13:46:55.449727+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"beef1307-ffb4-454e-9911-1b9a4a827e97","name":"tf-srv-great-newton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:21:5d:a1","maintenances":[],"modification_date":"2023-10-27T07:45:59.735913+00:00","name":"tf-srv-affectionate-wilbur","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"9c7310aa-d544-4ceb-916c-cc2b25f7c8e1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:45:59.735913+00:00","export_uri":null,"id":"1612f013-75ba-4c5a-813e-431e459954e1","modification_date":"2023-10-27T07:45:59.735913+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","name":"tf-srv-affectionate-wilbur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "2639" + - "2660" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:46:56 GMT + - Fri, 27 Oct 2023 07:46:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -295,7 +295,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 956918ad-436d-49ce-a267-1997e20db69c + - 2d8f9134-96c2-4dd3-aedb-5a008413f4f9 status: 200 OK code: 200 duration: "" @@ -306,12 +306,12 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59/action method: POST response: - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/beef1307-ffb4-454e-9911-1b9a4a827e97/action","href_result":"/servers/beef1307-ffb4-454e-9911-1b9a4a827e97","id":"7c6f3346-1ef5-45f7-b1a5-4d8c57cfac8d","started_at":"2023-10-20T13:46:56.915203+00:00","status":"pending","terminated_at":null}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59/action","href_result":"/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59","id":"0bb3e93b-5ec5-4699-bed9-1c8f7c0d37c3","started_at":"2023-10-27T07:46:01.053438+00:00","status":"pending","terminated_at":null}}' headers: Content-Length: - "322" @@ -320,9 +320,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:46:56 GMT + - Fri, 27 Oct 2023 07:46:01 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/7c6f3346-1ef5-45f7-b1a5-4d8c57cfac8d + - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/0bb3e93b-5ec5-4699-bed9-1c8f7c0d37c3 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -332,7 +332,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ced567c-a53a-4f8a-8968-c8f7e77cd669 + - ae2eb371-0bed-47e8-aa70-8e945f8c47c0 status: 202 Accepted code: 202 duration: "" @@ -341,27 +341,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"e6a56379-9ef4-48d4-a1d2-12b475e0fed8","initrd":"http://10.197.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.197.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:46:55.449727+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-great-newton","id":"beef1307-ffb4-454e-9911-1b9a4a827e97","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:45:59.735913+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-affectionate-wilbur","id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"dd333413-110e-4533-b991-05c4b0fbf017","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:20:88:cd","maintenances":[],"modification_date":"2023-10-20T13:46:56.285452+00:00","name":"tf-srv-great-newton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default - security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:46:55.449727+00:00","export_uri":null,"id":"699f8828-1e31-4f6b-b0dc-85ca82b464cc","modification_date":"2023-10-20T13:46:55.449727+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"beef1307-ffb4-454e-9911-1b9a4a827e97","name":"tf-srv-great-newton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:21:5d:a1","maintenances":[],"modification_date":"2023-10-27T07:46:00.545617+00:00","name":"tf-srv-affectionate-wilbur","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"9c7310aa-d544-4ceb-916c-cc2b25f7c8e1","name":"Default + security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:45:59.735913+00:00","export_uri":null,"id":"1612f013-75ba-4c5a-813e-431e459954e1","modification_date":"2023-10-27T07:45:59.735913+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","name":"tf-srv-affectionate-wilbur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "2661" + - "2682" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:46:57 GMT + - Fri, 27 Oct 2023 07:46:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -371,7 +371,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 543a6ccc-453c-446a-a02c-8aeef8c3738e + - bbb9d0c5-dcf3-4080-96b5-6651400eba71 status: 200 OK code: 200 duration: "" @@ -380,27 +380,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"e6a56379-9ef4-48d4-a1d2-12b475e0fed8","initrd":"http://10.197.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.197.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:46:55.449727+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-great-newton","id":"beef1307-ffb4-454e-9911-1b9a4a827e97","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:45:59.735913+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-affectionate-wilbur","id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"dd333413-110e-4533-b991-05c4b0fbf017","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"19","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:20:88:cd","maintenances":[],"modification_date":"2023-10-20T13:46:56.285452+00:00","name":"tf-srv-great-newton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.200.0.37","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default - security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:46:55.449727+00:00","export_uri":null,"id":"699f8828-1e31-4f6b-b0dc-85ca82b464cc","modification_date":"2023-10-20T13:46:55.449727+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"beef1307-ffb4-454e-9911-1b9a4a827e97","name":"tf-srv-great-newton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"401","node_id":"22","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:21:5d:a1","maintenances":[],"modification_date":"2023-10-27T07:46:00.545617+00:00","name":"tf-srv-affectionate-wilbur","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.197.90.43","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"9c7310aa-d544-4ceb-916c-cc2b25f7c8e1","name":"Default + security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:45:59.735913+00:00","export_uri":null,"id":"1612f013-75ba-4c5a-813e-431e459954e1","modification_date":"2023-10-27T07:45:59.735913+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","name":"tf-srv-affectionate-wilbur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "2772" + - "2795" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:02 GMT + - Fri, 27 Oct 2023 07:46:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -410,7 +410,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52c474cc-08de-4b8c-ac12-ffe8e82476c1 + - e0fd0d3f-23f4-437b-a647-fac27c900acd status: 200 OK code: 200 duration: "" @@ -419,27 +419,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"e6a56379-9ef4-48d4-a1d2-12b475e0fed8","initrd":"http://10.197.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.197.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:46:55.449727+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-great-newton","id":"beef1307-ffb4-454e-9911-1b9a4a827e97","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:45:59.735913+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-affectionate-wilbur","id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"dd333413-110e-4533-b991-05c4b0fbf017","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"19","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:20:88:cd","maintenances":[],"modification_date":"2023-10-20T13:46:56.285452+00:00","name":"tf-srv-great-newton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.200.0.37","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default - security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:46:55.449727+00:00","export_uri":null,"id":"699f8828-1e31-4f6b-b0dc-85ca82b464cc","modification_date":"2023-10-20T13:46:55.449727+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"beef1307-ffb4-454e-9911-1b9a4a827e97","name":"tf-srv-great-newton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"401","node_id":"22","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:21:5d:a1","maintenances":[],"modification_date":"2023-10-27T07:46:00.545617+00:00","name":"tf-srv-affectionate-wilbur","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.197.90.43","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"9c7310aa-d544-4ceb-916c-cc2b25f7c8e1","name":"Default + security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:45:59.735913+00:00","export_uri":null,"id":"1612f013-75ba-4c5a-813e-431e459954e1","modification_date":"2023-10-27T07:45:59.735913+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","name":"tf-srv-affectionate-wilbur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "2772" + - "2795" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:07 GMT + - Fri, 27 Oct 2023 07:46:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -449,7 +449,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6310ba89-fa7c-4f42-b84a-d3fa8e4018e4 + - 17a2e0de-0ede-48b2-be93-739f5cace826 status: 200 OK code: 200 duration: "" @@ -458,27 +458,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"e6a56379-9ef4-48d4-a1d2-12b475e0fed8","initrd":"http://10.197.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.197.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:46:55.449727+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-great-newton","id":"beef1307-ffb4-454e-9911-1b9a4a827e97","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:45:59.735913+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-affectionate-wilbur","id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"dd333413-110e-4533-b991-05c4b0fbf017","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"19","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:20:88:cd","maintenances":[],"modification_date":"2023-10-20T13:47:07.812594+00:00","name":"tf-srv-great-newton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.200.0.37","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default - security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:46:55.449727+00:00","export_uri":null,"id":"699f8828-1e31-4f6b-b0dc-85ca82b464cc","modification_date":"2023-10-20T13:46:55.449727+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"beef1307-ffb4-454e-9911-1b9a4a827e97","name":"tf-srv-great-newton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"401","node_id":"22","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:21:5d:a1","maintenances":[],"modification_date":"2023-10-27T07:46:14.323088+00:00","name":"tf-srv-affectionate-wilbur","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.197.90.43","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"9c7310aa-d544-4ceb-916c-cc2b25f7c8e1","name":"Default + security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:45:59.735913+00:00","export_uri":null,"id":"1612f013-75ba-4c5a-813e-431e459954e1","modification_date":"2023-10-27T07:45:59.735913+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","name":"tf-srv-affectionate-wilbur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "2803" + - "2826" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:12 GMT + - Fri, 27 Oct 2023 07:46:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -488,7 +488,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8b3153c-1525-4938-aace-c63bb40cc3a5 + - d82cb2fc-b87d-4c77-96f6-bd7478ee82af status: 200 OK code: 200 duration: "" @@ -497,21 +497,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-2/private-networks/53b3457b-4f5f-440a-ac83-2659edfd0347 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0a06e430-cacb-4609-8ba3-57affcbcc2db method: GET response: - body: '{"created_at":"2023-10-20T13:46:54.037849Z","id":"53b3457b-4f5f-440a-ac83-2659edfd0347","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":["172.16.92.0/22","fd5f:519c:6d46:8a45::/64"],"tags":[],"updated_at":"2023-10-20T13:46:54.037849Z","zone":"fr-par-2"}' + body: '{"created_at":"2023-10-27T07:45:58.532342Z","dhcp_enabled":true,"id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","name":"private_network_instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:45:58.532342Z","id":"a2cc2e01-2b23-4349-92fa-d0837a0e8682","subnet":"172.16.72.0/22","updated_at":"2023-10-27T07:45:58.532342Z"},{"created_at":"2023-10-27T07:45:58.532342Z","id":"4ae52286-6b20-477c-84e8-f93697ecfa59","subnet":"fd46:78ab:30b8:daea::/64","updated_at":"2023-10-27T07:45:58.532342Z"}],"tags":[],"updated_at":"2023-10-27T07:45:58.532342Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "367" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:12 GMT + - Fri, 27 Oct 2023 07:46:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -521,7 +521,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f8bf1e4-3184-4c44-ac63-cb0ff1d77d96 + - 2910ab1a-3218-4413-ab5c-2fc384b44494 status: 200 OK code: 200 duration: "" @@ -530,27 +530,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"e6a56379-9ef4-48d4-a1d2-12b475e0fed8","initrd":"http://10.197.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.197.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:46:55.449727+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-great-newton","id":"beef1307-ffb4-454e-9911-1b9a4a827e97","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:45:59.735913+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-affectionate-wilbur","id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"dd333413-110e-4533-b991-05c4b0fbf017","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"19","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:20:88:cd","maintenances":[],"modification_date":"2023-10-20T13:47:07.812594+00:00","name":"tf-srv-great-newton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.200.0.37","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default - security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:46:55.449727+00:00","export_uri":null,"id":"699f8828-1e31-4f6b-b0dc-85ca82b464cc","modification_date":"2023-10-20T13:46:55.449727+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"beef1307-ffb4-454e-9911-1b9a4a827e97","name":"tf-srv-great-newton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"401","node_id":"22","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:21:5d:a1","maintenances":[],"modification_date":"2023-10-27T07:46:14.323088+00:00","name":"tf-srv-affectionate-wilbur","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.197.90.43","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"9c7310aa-d544-4ceb-916c-cc2b25f7c8e1","name":"Default + security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:45:59.735913+00:00","export_uri":null,"id":"1612f013-75ba-4c5a-813e-431e459954e1","modification_date":"2023-10-27T07:45:59.735913+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","name":"tf-srv-affectionate-wilbur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "2803" + - "2826" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:13 GMT + - Fri, 27 Oct 2023 07:46:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -560,23 +560,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41ef9add-99d1-44a2-bde3-122c59a8921d + - a1b852ec-5a02-4d82-bf90-edac099add01 status: 200 OK code: 200 duration: "" - request: - body: '{"private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347"}' + body: '{"private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59/private_nics method: POST response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:13.166510+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:16.882698+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"syncing","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - "376" @@ -585,7 +585,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:13 GMT + - Fri, 27 Oct 2023 07:46:17 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -595,7 +595,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 371e21b5-ae0e-4bd3-8030-6c0a82e826ff + - 69610ab2-c71d-40cc-9b22-7847da7c478e status: 201 Created code: 201 duration: "" @@ -604,12 +604,45 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59/private_nics/5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1 + method: GET + response: + body: '{"private_nic":{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:16.882698+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"syncing","tags":[],"zone":"fr-par-2"}}' + headers: + Content-Length: + - "376" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Oct 2023 07:46:17 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d4db919d-830e-4c25-b823-11760fabf5a4 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97/private_nics/a9c3927d-9675-46ad-a002-6e82eaf30708 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59/private_nics/5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:13.166510+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:17.823283+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"syncing","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - "376" @@ -618,7 +651,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:13 GMT + - Fri, 27 Oct 2023 07:46:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -628,7 +661,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a139cc81-ec1b-472a-bad8-5490e0fe5ab7 + - e2c6b40e-ce7d-4721-800e-4bb26c5a6fc7 status: 200 OK code: 200 duration: "" @@ -637,12 +670,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97/private_nics/a9c3927d-9675-46ad-a002-6e82eaf30708 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59/private_nics/5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:14.210822+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:17.823283+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"syncing","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - "376" @@ -651,7 +684,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:19 GMT + - Fri, 27 Oct 2023 07:46:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -661,7 +694,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f2d639e-2321-4503-89d8-bffec133a697 + - e2b00351-73ec-4072-aced-33869312454d status: 200 OK code: 200 duration: "" @@ -670,12 +703,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97/private_nics/a9c3927d-9675-46ad-a002-6e82eaf30708 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59/private_nics/5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:14.210822+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:17.823283+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"syncing","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - "376" @@ -684,7 +717,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:24 GMT + - Fri, 27 Oct 2023 07:46:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -694,7 +727,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a57b798-6d28-4266-81c2-97b1147899af + - fceef583-76e3-4ac8-8b66-9896a9cd2335 status: 200 OK code: 200 duration: "" @@ -703,12 +736,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97/private_nics/a9c3927d-9675-46ad-a002-6e82eaf30708 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59/private_nics/5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:14.210822+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:17.823283+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"syncing","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - "376" @@ -717,7 +750,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:29 GMT + - Fri, 27 Oct 2023 07:46:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -727,7 +760,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 922a2462-6b29-4431-a0af-4b68e5c25ef4 + - a8ad5c52-506d-4f78-9687-6d8e19c69870 status: 200 OK code: 200 duration: "" @@ -736,12 +769,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97/private_nics/a9c3927d-9675-46ad-a002-6e82eaf30708 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59/private_nics/5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:14.210822+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:17.823283+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"syncing","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - "376" @@ -750,7 +783,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:34 GMT + - Fri, 27 Oct 2023 07:46:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -760,7 +793,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e73f9eff-904c-428f-92a1-eceb09d26c8d + - cd0f9ad2-d27d-4fa8-9923-5839fba73c08 status: 200 OK code: 200 duration: "" @@ -769,12 +802,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97/private_nics/a9c3927d-9675-46ad-a002-6e82eaf30708 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59/private_nics/5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:14.210822+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:17.823283+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"syncing","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - "376" @@ -783,7 +816,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:39 GMT + - Fri, 27 Oct 2023 07:46:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -793,7 +826,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e677ee39-3730-40c5-8dfb-760f47b22a31 + - e888f61a-1307-4b76-926f-313332ee4de0 status: 200 OK code: 200 duration: "" @@ -802,12 +835,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97/private_nics/a9c3927d-9675-46ad-a002-6e82eaf30708 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59/private_nics/5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:44.382091+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"available","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:48.424692+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"available","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - "378" @@ -816,7 +849,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:44 GMT + - Fri, 27 Oct 2023 07:46:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -826,7 +859,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8917fea-d48d-4f9b-91d3-1304b0667f72 + - 93fcf291-80d7-4f57-8e2b-33ca54832f1d status: 200 OK code: 200 duration: "" @@ -835,12 +868,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97/private_nics/a9c3927d-9675-46ad-a002-6e82eaf30708 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59/private_nics/5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:44.382091+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"available","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:48.424692+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"available","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - "378" @@ -849,7 +882,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:44 GMT + - Fri, 27 Oct 2023 07:46:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -859,7 +892,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46ac78ca-7192-4f5c-95c4-c1a3ae3d680e + - 3674cc2d-d619-4378-b470-3a62f3bbc753 status: 200 OK code: 200 duration: "" @@ -868,27 +901,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"e6a56379-9ef4-48d4-a1d2-12b475e0fed8","initrd":"http://10.197.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.197.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:46:55.449727+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-great-newton","id":"beef1307-ffb4-454e-9911-1b9a4a827e97","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:45:59.735913+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-affectionate-wilbur","id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"dd333413-110e-4533-b991-05c4b0fbf017","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"19","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:20:88:cd","maintenances":[],"modification_date":"2023-10-20T13:47:07.812594+00:00","name":"tf-srv-great-newton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.200.0.37","private_nics":[{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:44.382091+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"available","tags":[],"zone":"fr-par-2"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:46:55.449727+00:00","export_uri":null,"id":"699f8828-1e31-4f6b-b0dc-85ca82b464cc","modification_date":"2023-10-20T13:46:55.449727+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"beef1307-ffb4-454e-9911-1b9a4a827e97","name":"tf-srv-great-newton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"401","node_id":"22","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:21:5d:a1","maintenances":[],"modification_date":"2023-10-27T07:46:14.323088+00:00","name":"tf-srv-affectionate-wilbur","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.197.90.43","private_nics":[{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:48.424692+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"available","tags":[],"zone":"fr-par-2"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"9c7310aa-d544-4ceb-916c-cc2b25f7c8e1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:45:59.735913+00:00","export_uri":null,"id":"1612f013-75ba-4c5a-813e-431e459954e1","modification_date":"2023-10-27T07:45:59.735913+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","name":"tf-srv-affectionate-wilbur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "3156" + - "3179" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:44 GMT + - Fri, 27 Oct 2023 07:46:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -898,7 +931,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09f07e15-a79a-41e2-b1b5-0cdebc9997d5 + - 94b43d7f-683f-4180-8837-501f9d958c3b status: 200 OK code: 200 duration: "" @@ -907,9 +940,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59/user_data method: GET response: body: '{"user_data":[]}' @@ -921,7 +954,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:44 GMT + - Fri, 27 Oct 2023 07:46:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -931,7 +964,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30ed8eaa-e785-497d-ac05-c2e03fb1d308 + - a37f4d07-994a-4826-969b-b52a771c12bf status: 200 OK code: 200 duration: "" @@ -940,12 +973,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:44.382091+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"available","tags":[],"zone":"fr-par-2"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:48.424692+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"available","tags":[],"zone":"fr-par-2"}]}' headers: Content-Length: - "381" @@ -954,9 +987,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:44 GMT + - Fri, 27 Oct 2023 07:46:53 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -967,7 +1000,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30677a3c-09f4-403d-ac93-f68320248e46 + - 179ef3b5-b641-4e76-918a-22b2e52521bb X-Total-Count: - "1" status: 200 OK @@ -978,12 +1011,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:44.382091+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"available","tags":[],"zone":"fr-par-2"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:48.424692+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"available","tags":[],"zone":"fr-par-2"}]}' headers: Content-Length: - "381" @@ -992,9 +1025,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:45 GMT + - Fri, 27 Oct 2023 07:46:53 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -1005,7 +1038,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce191148-4bc7-45cd-a411-29f03d3102e9 + - b612a94f-bc1c-4dbe-ad5f-7f1e64a6ef94 X-Total-Count: - "1" status: 200 OK @@ -1016,12 +1049,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/53b3457b-4f5f-440a-ac83-2659edfd0347 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0a06e430-cacb-4609-8ba3-57affcbcc2db method: GET response: - body: '{"created_at":"2023-10-20T13:46:54.037849Z","dhcp_enabled":true,"id":"53b3457b-4f5f-440a-ac83-2659edfd0347","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T13:46:54.037849Z","id":"6b296a55-4d4e-4b62-be14-60b113a92ffd","subnet":"172.16.92.0/22","updated_at":"2023-10-20T13:46:54.037849Z"},{"created_at":"2023-10-20T13:46:54.037849Z","id":"21b82cbf-0071-490f-9f5c-b19ecbc45038","subnet":"fd5f:519c:6d46:8a45::/64","updated_at":"2023-10-20T13:46:54.037849Z"}],"tags":[],"updated_at":"2023-10-20T13:46:54.037849Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2023-10-27T07:45:58.532342Z","dhcp_enabled":true,"id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","name":"private_network_instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:45:58.532342Z","id":"a2cc2e01-2b23-4349-92fa-d0837a0e8682","subnet":"172.16.72.0/22","updated_at":"2023-10-27T07:45:58.532342Z"},{"created_at":"2023-10-27T07:45:58.532342Z","id":"4ae52286-6b20-477c-84e8-f93697ecfa59","subnet":"fd46:78ab:30b8:daea::/64","updated_at":"2023-10-27T07:45:58.532342Z"}],"tags":[],"updated_at":"2023-10-27T07:45:58.532342Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "725" @@ -1030,7 +1063,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:45 GMT + - Fri, 27 Oct 2023 07:46:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1040,7 +1073,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2aa0865e-7a13-40d8-b288-faf79c0572ba + - 355fe1a0-7507-4db4-9cb8-52972e5715a3 status: 200 OK code: 200 duration: "" @@ -1049,27 +1082,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"e6a56379-9ef4-48d4-a1d2-12b475e0fed8","initrd":"http://10.197.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.197.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:46:55.449727+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-great-newton","id":"beef1307-ffb4-454e-9911-1b9a4a827e97","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:45:59.735913+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-affectionate-wilbur","id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"dd333413-110e-4533-b991-05c4b0fbf017","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"19","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:20:88:cd","maintenances":[],"modification_date":"2023-10-20T13:47:07.812594+00:00","name":"tf-srv-great-newton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.200.0.37","private_nics":[{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:44.382091+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"available","tags":[],"zone":"fr-par-2"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:46:55.449727+00:00","export_uri":null,"id":"699f8828-1e31-4f6b-b0dc-85ca82b464cc","modification_date":"2023-10-20T13:46:55.449727+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"beef1307-ffb4-454e-9911-1b9a4a827e97","name":"tf-srv-great-newton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"401","node_id":"22","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:21:5d:a1","maintenances":[],"modification_date":"2023-10-27T07:46:14.323088+00:00","name":"tf-srv-affectionate-wilbur","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.197.90.43","private_nics":[{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:48.424692+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"available","tags":[],"zone":"fr-par-2"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"9c7310aa-d544-4ceb-916c-cc2b25f7c8e1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:45:59.735913+00:00","export_uri":null,"id":"1612f013-75ba-4c5a-813e-431e459954e1","modification_date":"2023-10-27T07:45:59.735913+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","name":"tf-srv-affectionate-wilbur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "3156" + - "3179" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:45 GMT + - Fri, 27 Oct 2023 07:46:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1079,7 +1112,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b1a22ed-087e-49a5-8f3d-b969ddf215df + - e678e04e-9bd9-41a5-8226-08febbdbbbfa status: 200 OK code: 200 duration: "" @@ -1088,9 +1121,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59/user_data method: GET response: body: '{"user_data":[]}' @@ -1102,7 +1135,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:45 GMT + - Fri, 27 Oct 2023 07:46:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1112,7 +1145,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40ea7248-0657-4336-8eed-8c407e0876d7 + - 9912e5b2-bc5d-4a2c-a38f-fb0888f0bfc3 status: 200 OK code: 200 duration: "" @@ -1121,12 +1154,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:44.382091+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"available","tags":[],"zone":"fr-par-2"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:48.424692+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"available","tags":[],"zone":"fr-par-2"}]}' headers: Content-Length: - "381" @@ -1135,9 +1168,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:45 GMT + - Fri, 27 Oct 2023 07:46:54 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -1148,7 +1181,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74c52d30-5eb6-464c-a9ca-b645e5873d16 + - d71d8820-fa43-4bfc-b6e4-45ea563d61e8 X-Total-Count: - "1" status: 200 OK @@ -1159,12 +1192,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/53b3457b-4f5f-440a-ac83-2659edfd0347 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0a06e430-cacb-4609-8ba3-57affcbcc2db method: GET response: - body: '{"created_at":"2023-10-20T13:46:54.037849Z","dhcp_enabled":true,"id":"53b3457b-4f5f-440a-ac83-2659edfd0347","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T13:46:54.037849Z","id":"6b296a55-4d4e-4b62-be14-60b113a92ffd","subnet":"172.16.92.0/22","updated_at":"2023-10-20T13:46:54.037849Z"},{"created_at":"2023-10-20T13:46:54.037849Z","id":"21b82cbf-0071-490f-9f5c-b19ecbc45038","subnet":"fd5f:519c:6d46:8a45::/64","updated_at":"2023-10-20T13:46:54.037849Z"}],"tags":[],"updated_at":"2023-10-20T13:46:54.037849Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2023-10-27T07:45:58.532342Z","dhcp_enabled":true,"id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","name":"private_network_instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:45:58.532342Z","id":"a2cc2e01-2b23-4349-92fa-d0837a0e8682","subnet":"172.16.72.0/22","updated_at":"2023-10-27T07:45:58.532342Z"},{"created_at":"2023-10-27T07:45:58.532342Z","id":"4ae52286-6b20-477c-84e8-f93697ecfa59","subnet":"fd46:78ab:30b8:daea::/64","updated_at":"2023-10-27T07:45:58.532342Z"}],"tags":[],"updated_at":"2023-10-27T07:45:58.532342Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "725" @@ -1173,7 +1206,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:46 GMT + - Fri, 27 Oct 2023 07:46:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1183,7 +1216,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b24a3c7d-6246-4a81-817d-f625c6540b49 + - d6c73763-af10-4163-b713-16463deafd2c status: 200 OK code: 200 duration: "" @@ -1192,27 +1225,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"e6a56379-9ef4-48d4-a1d2-12b475e0fed8","initrd":"http://10.197.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.197.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:46:55.449727+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-great-newton","id":"beef1307-ffb4-454e-9911-1b9a4a827e97","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:45:59.735913+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-affectionate-wilbur","id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"dd333413-110e-4533-b991-05c4b0fbf017","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"19","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:20:88:cd","maintenances":[],"modification_date":"2023-10-20T13:47:07.812594+00:00","name":"tf-srv-great-newton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.200.0.37","private_nics":[{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:44.382091+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"available","tags":[],"zone":"fr-par-2"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:46:55.449727+00:00","export_uri":null,"id":"699f8828-1e31-4f6b-b0dc-85ca82b464cc","modification_date":"2023-10-20T13:46:55.449727+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"beef1307-ffb4-454e-9911-1b9a4a827e97","name":"tf-srv-great-newton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"401","node_id":"22","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:21:5d:a1","maintenances":[],"modification_date":"2023-10-27T07:46:14.323088+00:00","name":"tf-srv-affectionate-wilbur","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.197.90.43","private_nics":[{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:48.424692+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"available","tags":[],"zone":"fr-par-2"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"9c7310aa-d544-4ceb-916c-cc2b25f7c8e1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:45:59.735913+00:00","export_uri":null,"id":"1612f013-75ba-4c5a-813e-431e459954e1","modification_date":"2023-10-27T07:45:59.735913+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","name":"tf-srv-affectionate-wilbur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "3156" + - "3179" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:46 GMT + - Fri, 27 Oct 2023 07:46:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1222,7 +1255,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee688201-3402-45e2-adfd-95f820da2b99 + - bcdb0404-ec19-4789-ae56-32401fa1e173 status: 200 OK code: 200 duration: "" @@ -1231,9 +1264,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59/user_data method: GET response: body: '{"user_data":[]}' @@ -1245,7 +1278,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:46 GMT + - Fri, 27 Oct 2023 07:46:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1255,7 +1288,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f255daed-0456-47a5-b1c5-f1eba24b309f + - 165b23de-2679-4609-b44c-2289d242d76c status: 200 OK code: 200 duration: "" @@ -1264,12 +1297,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:44.382091+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"available","tags":[],"zone":"fr-par-2"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:48.424692+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"available","tags":[],"zone":"fr-par-2"}]}' headers: Content-Length: - "381" @@ -1278,9 +1311,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:46 GMT + - Fri, 27 Oct 2023 07:46:55 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -1291,7 +1324,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf9c0776-ab18-4928-a526-e3564b5a3555 + - 756028c2-d477-400a-9385-a7151f1f74a7 X-Total-Count: - "1" status: 200 OK @@ -1302,27 +1335,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"e6a56379-9ef4-48d4-a1d2-12b475e0fed8","initrd":"http://10.197.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.197.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:46:55.449727+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-great-newton","id":"beef1307-ffb4-454e-9911-1b9a4a827e97","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:45:59.735913+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-affectionate-wilbur","id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"dd333413-110e-4533-b991-05c4b0fbf017","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"19","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:20:88:cd","maintenances":[],"modification_date":"2023-10-20T13:47:07.812594+00:00","name":"tf-srv-great-newton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.200.0.37","private_nics":[{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:44.382091+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"available","tags":[],"zone":"fr-par-2"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:46:55.449727+00:00","export_uri":null,"id":"699f8828-1e31-4f6b-b0dc-85ca82b464cc","modification_date":"2023-10-20T13:46:55.449727+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"beef1307-ffb4-454e-9911-1b9a4a827e97","name":"tf-srv-great-newton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"401","node_id":"22","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:21:5d:a1","maintenances":[],"modification_date":"2023-10-27T07:46:14.323088+00:00","name":"tf-srv-affectionate-wilbur","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.197.90.43","private_nics":[{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:48.424692+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"available","tags":[],"zone":"fr-par-2"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"9c7310aa-d544-4ceb-916c-cc2b25f7c8e1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:45:59.735913+00:00","export_uri":null,"id":"1612f013-75ba-4c5a-813e-431e459954e1","modification_date":"2023-10-27T07:45:59.735913+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","name":"tf-srv-affectionate-wilbur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "3156" + - "3179" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:47 GMT + - Fri, 27 Oct 2023 07:46:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1332,7 +1365,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba09ca73-2b8e-4893-80e9-a850e6c43068 + - 4d63b3dd-fce0-434c-9a79-4f2ec766a6b7 status: 200 OK code: 200 duration: "" @@ -1343,12 +1376,12 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59/action method: POST response: - body: '{"task":{"description":"server_poweroff","href_from":"/servers/beef1307-ffb4-454e-9911-1b9a4a827e97/action","href_result":"/servers/beef1307-ffb4-454e-9911-1b9a4a827e97","id":"fed53e9d-edf1-4983-b546-0b2cdfdbf48e","started_at":"2023-10-20T13:47:47.614579+00:00","status":"pending","terminated_at":null}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59/action","href_result":"/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59","id":"c79cc73a-ac20-4d65-b8b9-96cdf0b45aeb","started_at":"2023-10-27T07:46:55.949891+00:00","status":"pending","terminated_at":null}}' headers: Content-Length: - "317" @@ -1357,9 +1390,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:47 GMT + - Fri, 27 Oct 2023 07:46:55 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/fed53e9d-edf1-4983-b546-0b2cdfdbf48e + - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/c79cc73a-ac20-4d65-b8b9-96cdf0b45aeb Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1369,7 +1402,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bbb79090-ecf1-4c68-a784-509774458cb6 + - de36130a-69bd-4cf8-b296-73855d4b3bfb status: 202 Accepted code: 202 duration: "" @@ -1378,27 +1411,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"e6a56379-9ef4-48d4-a1d2-12b475e0fed8","initrd":"http://10.197.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.197.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:46:55.449727+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-great-newton","id":"beef1307-ffb4-454e-9911-1b9a4a827e97","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:45:59.735913+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-affectionate-wilbur","id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"dd333413-110e-4533-b991-05c4b0fbf017","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"19","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:20:88:cd","maintenances":[],"modification_date":"2023-10-20T13:47:47.275769+00:00","name":"tf-srv-great-newton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.200.0.37","private_nics":[{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:44.382091+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"available","tags":[],"zone":"fr-par-2"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:46:55.449727+00:00","export_uri":null,"id":"699f8828-1e31-4f6b-b0dc-85ca82b464cc","modification_date":"2023-10-20T13:46:55.449727+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"beef1307-ffb4-454e-9911-1b9a4a827e97","name":"tf-srv-great-newton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"401","node_id":"22","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:21:5d:a1","maintenances":[],"modification_date":"2023-10-27T07:46:55.642326+00:00","name":"tf-srv-affectionate-wilbur","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.197.90.43","private_nics":[{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:48.424692+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"available","tags":[],"zone":"fr-par-2"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"9c7310aa-d544-4ceb-916c-cc2b25f7c8e1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:45:59.735913+00:00","export_uri":null,"id":"1612f013-75ba-4c5a-813e-431e459954e1","modification_date":"2023-10-27T07:45:59.735913+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","name":"tf-srv-affectionate-wilbur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "3124" + - "3147" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:47 GMT + - Fri, 27 Oct 2023 07:46:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1408,7 +1441,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be4885e1-0ed7-4c42-aa96-9d7022ca2645 + - ac1faa42-d02f-449d-8c3e-2c7ccf6e0557 status: 200 OK code: 200 duration: "" @@ -1417,27 +1450,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"e6a56379-9ef4-48d4-a1d2-12b475e0fed8","initrd":"http://10.197.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.197.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:46:55.449727+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-great-newton","id":"beef1307-ffb4-454e-9911-1b9a4a827e97","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:45:59.735913+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-affectionate-wilbur","id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"dd333413-110e-4533-b991-05c4b0fbf017","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"19","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:20:88:cd","maintenances":[],"modification_date":"2023-10-20T13:47:47.275769+00:00","name":"tf-srv-great-newton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.200.0.37","private_nics":[{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:44.382091+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"available","tags":[],"zone":"fr-par-2"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:46:55.449727+00:00","export_uri":null,"id":"699f8828-1e31-4f6b-b0dc-85ca82b464cc","modification_date":"2023-10-20T13:46:55.449727+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"beef1307-ffb4-454e-9911-1b9a4a827e97","name":"tf-srv-great-newton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"401","node_id":"22","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:21:5d:a1","maintenances":[],"modification_date":"2023-10-27T07:46:55.642326+00:00","name":"tf-srv-affectionate-wilbur","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.197.90.43","private_nics":[{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:48.424692+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"available","tags":[],"zone":"fr-par-2"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"9c7310aa-d544-4ceb-916c-cc2b25f7c8e1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:45:59.735913+00:00","export_uri":null,"id":"1612f013-75ba-4c5a-813e-431e459954e1","modification_date":"2023-10-27T07:45:59.735913+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","name":"tf-srv-affectionate-wilbur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "3124" + - "3147" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:53 GMT + - Fri, 27 Oct 2023 07:47:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1447,7 +1480,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e983b376-976d-4e76-88ce-3538e248d07e + - d372c35e-8545-4a62-b484-22ae02a75871 status: 200 OK code: 200 duration: "" @@ -1456,27 +1489,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"e6a56379-9ef4-48d4-a1d2-12b475e0fed8","initrd":"http://10.197.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.197.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:46:55.449727+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-great-newton","id":"beef1307-ffb4-454e-9911-1b9a4a827e97","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:45:59.735913+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-affectionate-wilbur","id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"dd333413-110e-4533-b991-05c4b0fbf017","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"19","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:20:88:cd","maintenances":[],"modification_date":"2023-10-20T13:47:47.275769+00:00","name":"tf-srv-great-newton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.200.0.37","private_nics":[{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:44.382091+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"available","tags":[],"zone":"fr-par-2"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:46:55.449727+00:00","export_uri":null,"id":"699f8828-1e31-4f6b-b0dc-85ca82b464cc","modification_date":"2023-10-20T13:46:55.449727+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"beef1307-ffb4-454e-9911-1b9a4a827e97","name":"tf-srv-great-newton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"401","node_id":"22","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:21:5d:a1","maintenances":[],"modification_date":"2023-10-27T07:46:55.642326+00:00","name":"tf-srv-affectionate-wilbur","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.197.90.43","private_nics":[{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:48.424692+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"available","tags":[],"zone":"fr-par-2"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"9c7310aa-d544-4ceb-916c-cc2b25f7c8e1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:45:59.735913+00:00","export_uri":null,"id":"1612f013-75ba-4c5a-813e-431e459954e1","modification_date":"2023-10-27T07:45:59.735913+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","name":"tf-srv-affectionate-wilbur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "3124" + - "3147" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:47:58 GMT + - Fri, 27 Oct 2023 07:47:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1486,7 +1519,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a36c40b-6e84-4d2b-bec6-0e2045c4f661 + - 949a0496-da84-42dd-9b02-304039ea3022 status: 200 OK code: 200 duration: "" @@ -1495,27 +1528,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"e6a56379-9ef4-48d4-a1d2-12b475e0fed8","initrd":"http://10.197.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.197.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:46:55.449727+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-great-newton","id":"beef1307-ffb4-454e-9911-1b9a4a827e97","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:45:59.735913+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-affectionate-wilbur","id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"dd333413-110e-4533-b991-05c4b0fbf017","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"19","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:20:88:cd","maintenances":[],"modification_date":"2023-10-20T13:47:47.275769+00:00","name":"tf-srv-great-newton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.200.0.37","private_nics":[{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:44.382091+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"available","tags":[],"zone":"fr-par-2"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:46:55.449727+00:00","export_uri":null,"id":"699f8828-1e31-4f6b-b0dc-85ca82b464cc","modification_date":"2023-10-20T13:46:55.449727+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"beef1307-ffb4-454e-9911-1b9a4a827e97","name":"tf-srv-great-newton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"401","node_id":"22","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:21:5d:a1","maintenances":[],"modification_date":"2023-10-27T07:46:55.642326+00:00","name":"tf-srv-affectionate-wilbur","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.197.90.43","private_nics":[{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:48.424692+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"available","tags":[],"zone":"fr-par-2"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"9c7310aa-d544-4ceb-916c-cc2b25f7c8e1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:45:59.735913+00:00","export_uri":null,"id":"1612f013-75ba-4c5a-813e-431e459954e1","modification_date":"2023-10-27T07:45:59.735913+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","name":"tf-srv-affectionate-wilbur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "3124" + - "3147" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:03 GMT + - Fri, 27 Oct 2023 07:47:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1525,7 +1558,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd4b1ac1-b6b6-4006-b3a3-033e3da3ae31 + - 4d1dad4b-3cb4-4a1a-bc74-992c463bde97 status: 200 OK code: 200 duration: "" @@ -1534,27 +1567,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"e6a56379-9ef4-48d4-a1d2-12b475e0fed8","initrd":"http://10.197.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.197.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:46:55.449727+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-great-newton","id":"beef1307-ffb4-454e-9911-1b9a4a827e97","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:45:59.735913+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-affectionate-wilbur","id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"dd333413-110e-4533-b991-05c4b0fbf017","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"19","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:20:88:cd","maintenances":[],"modification_date":"2023-10-20T13:47:47.275769+00:00","name":"tf-srv-great-newton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.200.0.37","private_nics":[{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:44.382091+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"available","tags":[],"zone":"fr-par-2"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:46:55.449727+00:00","export_uri":null,"id":"699f8828-1e31-4f6b-b0dc-85ca82b464cc","modification_date":"2023-10-20T13:46:55.449727+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"beef1307-ffb4-454e-9911-1b9a4a827e97","name":"tf-srv-great-newton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"401","node_id":"22","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:21:5d:a1","maintenances":[],"modification_date":"2023-10-27T07:46:55.642326+00:00","name":"tf-srv-affectionate-wilbur","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.197.90.43","private_nics":[{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:48.424692+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"available","tags":[],"zone":"fr-par-2"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"9c7310aa-d544-4ceb-916c-cc2b25f7c8e1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:45:59.735913+00:00","export_uri":null,"id":"1612f013-75ba-4c5a-813e-431e459954e1","modification_date":"2023-10-27T07:45:59.735913+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","name":"tf-srv-affectionate-wilbur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "3124" + - "3147" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:08 GMT + - Fri, 27 Oct 2023 07:47:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1564,7 +1597,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb58e5a4-f03e-4bb4-967c-0eac334ab118 + - 103a4836-1549-42b7-8987-713347f9423b status: 200 OK code: 200 duration: "" @@ -1573,27 +1606,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"e6a56379-9ef4-48d4-a1d2-12b475e0fed8","initrd":"http://10.197.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.197.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:46:55.449727+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-great-newton","id":"beef1307-ffb4-454e-9911-1b9a4a827e97","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:45:59.735913+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-affectionate-wilbur","id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"dd333413-110e-4533-b991-05c4b0fbf017","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"19","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:20:88:cd","maintenances":[],"modification_date":"2023-10-20T13:47:47.275769+00:00","name":"tf-srv-great-newton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.200.0.37","private_nics":[{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:44.382091+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"available","tags":[],"zone":"fr-par-2"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:46:55.449727+00:00","export_uri":null,"id":"699f8828-1e31-4f6b-b0dc-85ca82b464cc","modification_date":"2023-10-20T13:46:55.449727+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"beef1307-ffb4-454e-9911-1b9a4a827e97","name":"tf-srv-great-newton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"401","node_id":"22","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:21:5d:a1","maintenances":[],"modification_date":"2023-10-27T07:46:55.642326+00:00","name":"tf-srv-affectionate-wilbur","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.197.90.43","private_nics":[{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:48.424692+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"available","tags":[],"zone":"fr-par-2"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"9c7310aa-d544-4ceb-916c-cc2b25f7c8e1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:45:59.735913+00:00","export_uri":null,"id":"1612f013-75ba-4c5a-813e-431e459954e1","modification_date":"2023-10-27T07:45:59.735913+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","name":"tf-srv-affectionate-wilbur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "3124" + - "3147" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:13 GMT + - Fri, 27 Oct 2023 07:47:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1603,7 +1636,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71f3471e-2465-4b94-ae6b-ca283edb06a2 + - 2d936549-6d12-4637-a325-bfc447b949cd status: 200 OK code: 200 duration: "" @@ -1612,27 +1645,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"e6a56379-9ef4-48d4-a1d2-12b475e0fed8","initrd":"http://10.197.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.197.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:46:55.449727+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-great-newton","id":"beef1307-ffb4-454e-9911-1b9a4a827e97","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:45:59.735913+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-affectionate-wilbur","id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"dd333413-110e-4533-b991-05c4b0fbf017","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"19","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:20:88:cd","maintenances":[],"modification_date":"2023-10-20T13:47:47.275769+00:00","name":"tf-srv-great-newton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.200.0.37","private_nics":[{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:44.382091+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"available","tags":[],"zone":"fr-par-2"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:46:55.449727+00:00","export_uri":null,"id":"699f8828-1e31-4f6b-b0dc-85ca82b464cc","modification_date":"2023-10-20T13:46:55.449727+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"beef1307-ffb4-454e-9911-1b9a4a827e97","name":"tf-srv-great-newton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"401","node_id":"22","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:21:5d:a1","maintenances":[],"modification_date":"2023-10-27T07:46:55.642326+00:00","name":"tf-srv-affectionate-wilbur","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.197.90.43","private_nics":[{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:48.424692+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"available","tags":[],"zone":"fr-par-2"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"9c7310aa-d544-4ceb-916c-cc2b25f7c8e1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:45:59.735913+00:00","export_uri":null,"id":"1612f013-75ba-4c5a-813e-431e459954e1","modification_date":"2023-10-27T07:45:59.735913+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","name":"tf-srv-affectionate-wilbur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "3124" + - "3147" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:18 GMT + - Fri, 27 Oct 2023 07:47:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1642,7 +1675,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 340efe87-02c7-4bb8-bd27-4cef3ecd3261 + - 2e50969b-07bb-4198-ac5b-9c179432191f status: 200 OK code: 200 duration: "" @@ -1651,27 +1684,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"e6a56379-9ef4-48d4-a1d2-12b475e0fed8","initrd":"http://10.197.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.197.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:46:55.449727+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-great-newton","id":"beef1307-ffb4-454e-9911-1b9a4a827e97","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:45:59.735913+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-affectionate-wilbur","id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"dd333413-110e-4533-b991-05c4b0fbf017","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"19","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:20:88:cd","maintenances":[],"modification_date":"2023-10-20T13:47:47.275769+00:00","name":"tf-srv-great-newton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.200.0.37","private_nics":[{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:44.382091+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"available","tags":[],"zone":"fr-par-2"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:46:55.449727+00:00","export_uri":null,"id":"699f8828-1e31-4f6b-b0dc-85ca82b464cc","modification_date":"2023-10-20T13:46:55.449727+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"beef1307-ffb4-454e-9911-1b9a4a827e97","name":"tf-srv-great-newton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"401","node_id":"22","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:21:5d:a1","maintenances":[],"modification_date":"2023-10-27T07:46:55.642326+00:00","name":"tf-srv-affectionate-wilbur","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.197.90.43","private_nics":[{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:48.424692+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"available","tags":[],"zone":"fr-par-2"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"9c7310aa-d544-4ceb-916c-cc2b25f7c8e1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:45:59.735913+00:00","export_uri":null,"id":"1612f013-75ba-4c5a-813e-431e459954e1","modification_date":"2023-10-27T07:45:59.735913+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","name":"tf-srv-affectionate-wilbur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "3124" + - "3147" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:24 GMT + - Fri, 27 Oct 2023 07:47:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1681,7 +1714,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24c88037-befa-4901-8ded-052ba1db41e6 + - 125bc396-e5a9-4a2a-82af-292db40bdc86 status: 200 OK code: 200 duration: "" @@ -1690,27 +1723,105 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 + method: GET + response: + body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON + scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"e6a56379-9ef4-48d4-a1d2-12b475e0fed8","initrd":"http://10.197.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.197.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 + mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:45:59.735913+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-affectionate-wilbur","id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"dd333413-110e-4533-b991-05c4b0fbf017","name":"Ubuntu + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"401","node_id":"22","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:21:5d:a1","maintenances":[],"modification_date":"2023-10-27T07:46:55.642326+00:00","name":"tf-srv-affectionate-wilbur","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.197.90.43","private_nics":[{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:48.424692+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"available","tags":[],"zone":"fr-par-2"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"9c7310aa-d544-4ceb-916c-cc2b25f7c8e1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:45:59.735913+00:00","export_uri":null,"id":"1612f013-75ba-4c5a-813e-431e459954e1","modification_date":"2023-10-27T07:45:59.735913+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","name":"tf-srv-affectionate-wilbur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + headers: + Content-Length: + - "3147" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Oct 2023 07:47:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2dbf7a1f-befd-4efe-b651-909203ad01be + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 + method: GET + response: + body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON + scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"e6a56379-9ef4-48d4-a1d2-12b475e0fed8","initrd":"http://10.197.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.197.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 + mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:45:59.735913+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-affectionate-wilbur","id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"dd333413-110e-4533-b991-05c4b0fbf017","name":"Ubuntu + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"401","node_id":"22","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:21:5d:a1","maintenances":[],"modification_date":"2023-10-27T07:46:55.642326+00:00","name":"tf-srv-affectionate-wilbur","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.197.90.43","private_nics":[{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:48.424692+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"available","tags":[],"zone":"fr-par-2"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"9c7310aa-d544-4ceb-916c-cc2b25f7c8e1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:45:59.735913+00:00","export_uri":null,"id":"1612f013-75ba-4c5a-813e-431e459954e1","modification_date":"2023-10-27T07:45:59.735913+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","name":"tf-srv-affectionate-wilbur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + headers: + Content-Length: + - "3147" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Oct 2023 07:47:43 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 17034c19-0ddd-4bfa-a53c-34f52f3b2a81 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"e6a56379-9ef4-48d4-a1d2-12b475e0fed8","initrd":"http://10.197.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.197.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:46:55.449727+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-great-newton","id":"beef1307-ffb4-454e-9911-1b9a4a827e97","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:45:59.735913+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-affectionate-wilbur","id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"dd333413-110e-4533-b991-05c4b0fbf017","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:20:88:cd","maintenances":[],"modification_date":"2023-10-20T13:48:24.756309+00:00","name":"tf-srv-great-newton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:44.382091+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"available","tags":[],"zone":"fr-par-2"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:46:55.449727+00:00","export_uri":null,"id":"699f8828-1e31-4f6b-b0dc-85ca82b464cc","modification_date":"2023-10-20T13:46:55.449727+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"beef1307-ffb4-454e-9911-1b9a4a827e97","name":"tf-srv-great-newton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:21:5d:a1","maintenances":[],"modification_date":"2023-10-27T07:47:44.866273+00:00","name":"tf-srv-affectionate-wilbur","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:48.424692+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"available","tags":[],"zone":"fr-par-2"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"9c7310aa-d544-4ceb-916c-cc2b25f7c8e1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:45:59.735913+00:00","export_uri":null,"id":"1612f013-75ba-4c5a-813e-431e459954e1","modification_date":"2023-10-27T07:45:59.735913+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","name":"tf-srv-affectionate-wilbur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "3000" + - "3021" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:29 GMT + - Fri, 27 Oct 2023 07:47:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1720,7 +1831,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c2dd6d7-5d1c-4b89-8689-ad01b4b50510 + - 8583196e-43d3-47ae-aa35-4a1d308ef359 status: 200 OK code: 200 duration: "" @@ -1729,12 +1840,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:44.382091+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"available","tags":[],"zone":"fr-par-2"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:48.424692+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"available","tags":[],"zone":"fr-par-2"}]}' headers: Content-Length: - "381" @@ -1743,9 +1854,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:29 GMT + - Fri, 27 Oct 2023 07:47:48 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -1756,7 +1867,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55c7adcb-4784-41fd-80c2-7beff6e54a7e + - 0c1f0700-584c-469b-9cf0-dda7febf52a4 X-Total-Count: - "1" status: 200 OK @@ -1767,12 +1878,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97/private_nics/a9c3927d-9675-46ad-a002-6e82eaf30708 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59/private_nics/5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:47:13.166510+00:00","id":"a9c3927d-9675-46ad-a002-6e82eaf30708","mac_address":"02:00:00:22:e5:18","modification_date":"2023-10-20T13:47:44.382091+00:00","private_network_id":"53b3457b-4f5f-440a-ac83-2659edfd0347","server_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","state":"available","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:46:16.882698+00:00","id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","mac_address":"02:00:00:22:f7:f0","modification_date":"2023-10-27T07:46:48.424692+00:00","private_network_id":"0a06e430-cacb-4609-8ba3-57affcbcc2db","server_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","state":"available","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - "378" @@ -1781,7 +1892,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:29 GMT + - Fri, 27 Oct 2023 07:47:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1791,7 +1902,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff67e8cf-2a49-4d2f-91e1-c67a30956176 + - 207a6483-9d98-4189-9a69-5745063fd78a status: 200 OK code: 200 duration: "" @@ -1800,9 +1911,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97/private_nics/a9c3927d-9675-46ad-a002-6e82eaf30708 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59/private_nics/5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1 method: DELETE response: body: "" @@ -1810,7 +1921,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 20 Oct 2023 13:48:29 GMT + - Fri, 27 Oct 2023 07:47:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1820,7 +1931,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e273677-30b4-4e9f-8801-42ab94f62428 + - fbf5044b-669f-4966-927e-35a053a02547 status: 204 No Content code: 204 duration: "" @@ -1829,12 +1940,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97/private_nics/a9c3927d-9675-46ad-a002-6e82eaf30708 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59/private_nics/5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1 method: GET response: - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"a9c3927d-9675-46ad-a002-6e82eaf30708","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"5b0dabc0-c64f-41dc-ac6f-7db4b49d8dd1","type":"not_found"}' headers: Content-Length: - "148" @@ -1843,7 +1954,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:29 GMT + - Fri, 27 Oct 2023 07:47:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1853,7 +1964,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52177177-c045-469b-8e0a-cb00a0118700 + - f062dc3d-fb2a-4d68-96b9-229fab8eb395 status: 404 Not Found code: 404 duration: "" @@ -1862,27 +1973,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"e6a56379-9ef4-48d4-a1d2-12b475e0fed8","initrd":"http://10.197.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.197.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:46:55.449727+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-great-newton","id":"beef1307-ffb4-454e-9911-1b9a4a827e97","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-2"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:45:59.735913+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-affectionate-wilbur","id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:52.792003+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"c279d367-db1f-4cfe-bb4c-d8c589062fbf","modification_date":"2023-08-08T13:33:52.792003+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"dd333413-110e-4533-b991-05c4b0fbf017","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:20:88:cd","maintenances":[],"modification_date":"2023-10-20T13:48:24.756309+00:00","name":"tf-srv-great-newton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:46:55.449727+00:00","export_uri":null,"id":"699f8828-1e31-4f6b-b0dc-85ca82b464cc","modification_date":"2023-10-20T13:46:55.449727+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"beef1307-ffb4-454e-9911-1b9a4a827e97","name":"tf-srv-great-newton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:21:5d:a1","maintenances":[],"modification_date":"2023-10-27T07:47:44.866273+00:00","name":"tf-srv-affectionate-wilbur","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"9c7310aa-d544-4ceb-916c-cc2b25f7c8e1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:45:59.735913+00:00","export_uri":null,"id":"1612f013-75ba-4c5a-813e-431e459954e1","modification_date":"2023-10-27T07:45:59.735913+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","name":"tf-srv-affectionate-wilbur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "2639" + - "2660" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:30 GMT + - Fri, 27 Oct 2023 07:47:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1892,7 +2003,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92e88ac6-d490-44e7-9607-ef3759248f79 + - bde251b0-eae9-4064-92c2-fc553d51cdbc status: 200 OK code: 200 duration: "" @@ -1901,9 +2012,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 method: DELETE response: body: "" @@ -1911,7 +2022,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 20 Oct 2023 13:48:30 GMT + - Fri, 27 Oct 2023 07:47:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1921,7 +2032,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 772c7ad7-f5ca-4e7f-8e32-7a260d6079f4 + - c906d83c-3ea9-4b08-8738-fa0b08dd03d1 status: 204 No Content code: 204 duration: "" @@ -1930,12 +2041,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/beef1307-ffb4-454e-9911-1b9a4a827e97 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/b448a001-f034-4ea7-86fe-5d15cdf49d59 method: GET response: - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"beef1307-ffb4-454e-9911-1b9a4a827e97","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"b448a001-f034-4ea7-86fe-5d15cdf49d59","type":"not_found"}' headers: Content-Length: - "143" @@ -1944,7 +2055,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:30 GMT + - Fri, 27 Oct 2023 07:47:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1954,7 +2065,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb6812f6-aa5c-4b27-8662-6adc216cb7dc + - 9a84acd5-c066-4444-b56c-12f368e45baa status: 404 Not Found code: 404 duration: "" @@ -1963,9 +2074,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/699f8828-1e31-4f6b-b0dc-85ca82b464cc + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/1612f013-75ba-4c5a-813e-431e459954e1 method: DELETE response: body: "" @@ -1973,7 +2084,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 20 Oct 2023 13:48:30 GMT + - Fri, 27 Oct 2023 07:47:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1983,7 +2094,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fff4892c-63b3-493b-bd9d-28a3a3c9fe36 + - 9784d412-3e19-4a14-b1d5-c67e6d6c39db status: 204 No Content code: 204 duration: "" @@ -1992,9 +2103,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/53b3457b-4f5f-440a-ac83-2659edfd0347 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0a06e430-cacb-4609-8ba3-57affcbcc2db method: DELETE response: body: "" @@ -2004,7 +2115,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:31 GMT + - Fri, 27 Oct 2023 07:47:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2014,23 +2125,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 194f3cb5-3062-4888-b876-97da3690f003 + - eb7ac89b-53f8-49c4-b0b7-4fc610c9ea61 status: 204 No Content code: 204 duration: "" - request: - body: '{"name":"private_network_instance","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":null,"subnets":null,"vpc_id":null}' + body: '{"name":"private_network_instance","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null,"subnets":null,"vpc_id":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"created_at":"2023-10-20T13:48:31.136221Z","dhcp_enabled":true,"id":"6144b80b-8a12-4993-aa65-073e23fd774c","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T13:48:31.136221Z","id":"68d333ba-17fb-442e-bada-c92078d27a6d","subnet":"172.16.80.0/22","updated_at":"2023-10-20T13:48:31.136221Z"},{"created_at":"2023-10-20T13:48:31.136221Z","id":"70ec41bb-524c-48f3-b031-5d9b088ba7bd","subnet":"fd5f:519c:6d46:d64d::/64","updated_at":"2023-10-20T13:48:31.136221Z"}],"tags":[],"updated_at":"2023-10-20T13:48:31.136221Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2023-10-27T07:47:49.166464Z","dhcp_enabled":true,"id":"161831c6-4081-4f6b-940c-6f059525f368","name":"private_network_instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:47:49.166464Z","id":"bd0e7733-5c20-45d4-8ddc-a28aea069d30","subnet":"172.16.68.0/22","updated_at":"2023-10-27T07:47:49.166464Z"},{"created_at":"2023-10-27T07:47:49.166464Z","id":"eb3af6ea-438f-4108-befb-90b1eb8a0ab7","subnet":"fd46:78ab:30b8:4672::/64","updated_at":"2023-10-27T07:47:49.166464Z"}],"tags":[],"updated_at":"2023-10-27T07:47:49.166464Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "725" @@ -2039,7 +2150,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:31 GMT + - Fri, 27 Oct 2023 07:47:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2049,7 +2160,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e33e6f74-0f20-4c62-b294-ae38084121e7 + - eb592f53-65a1-40f5-9b83-748dbc67aaef status: 200 OK code: 200 duration: "" @@ -2058,12 +2169,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6144b80b-8a12-4993-aa65-073e23fd774c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/161831c6-4081-4f6b-940c-6f059525f368 method: GET response: - body: '{"created_at":"2023-10-20T13:48:31.136221Z","dhcp_enabled":true,"id":"6144b80b-8a12-4993-aa65-073e23fd774c","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T13:48:31.136221Z","id":"68d333ba-17fb-442e-bada-c92078d27a6d","subnet":"172.16.80.0/22","updated_at":"2023-10-20T13:48:31.136221Z"},{"created_at":"2023-10-20T13:48:31.136221Z","id":"70ec41bb-524c-48f3-b031-5d9b088ba7bd","subnet":"fd5f:519c:6d46:d64d::/64","updated_at":"2023-10-20T13:48:31.136221Z"}],"tags":[],"updated_at":"2023-10-20T13:48:31.136221Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2023-10-27T07:47:49.166464Z","dhcp_enabled":true,"id":"161831c6-4081-4f6b-940c-6f059525f368","name":"private_network_instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:47:49.166464Z","id":"bd0e7733-5c20-45d4-8ddc-a28aea069d30","subnet":"172.16.68.0/22","updated_at":"2023-10-27T07:47:49.166464Z"},{"created_at":"2023-10-27T07:47:49.166464Z","id":"eb3af6ea-438f-4108-befb-90b1eb8a0ab7","subnet":"fd46:78ab:30b8:4672::/64","updated_at":"2023-10-27T07:47:49.166464Z"}],"tags":[],"updated_at":"2023-10-27T07:47:49.166464Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "725" @@ -2072,7 +2183,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:32 GMT + - Fri, 27 Oct 2023 07:47:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2082,7 +2193,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c6622b3-29e1-43d2-ab35-c09e93a60e39 + - 5143dd7f-2e82-4ef0-beca-a7e85c2b64b2 status: 200 OK code: 200 duration: "" @@ -2091,7 +2202,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=created_at_asc&type=instance_local&zone=fr-par-1 method: GET @@ -2105,7 +2216,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:32 GMT + - Fri, 27 Oct 2023 07:47:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2115,7 +2226,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8cb442f-244b-469c-a351-054e0ced17d7 + - 33bea040-2b66-4ba6-b403-897c40075ad5 status: 200 OK code: 200 duration: "" @@ -2124,7 +2235,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET @@ -2138,7 +2249,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:32 GMT + - Fri, 27 Oct 2023 07:47:50 GMT Link: - ; rel="next",; rel="last" @@ -2151,7 +2262,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9061d05b-3568-431a-9a2c-7502131d002b + - 64dcbc08-405d-41d4-aaa3-43d2f705e10d X-Total-Count: - "56" status: 200 OK @@ -2162,7 +2273,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET @@ -2176,7 +2287,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:32 GMT + - Fri, 27 Oct 2023 07:47:50 GMT Link: - ; rel="first",; rel="previous",; rel="last" @@ -2189,31 +2300,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 667da8a6-cc79-4254-a41b-1a60acc23233 + - a16e86c3-d6f0-419c-a557-3d584a2cc6c1 X-Total-Count: - "56" status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-srv-peaceful-hamilton","dynamic_ip_required":false,"routed_ip_enabled":false,"commercial_type":"DEV1-S","image":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-srv-relaxed-aryabhata","dynamic_ip_required":false,"routed_ip_enabled":false,"commercial_type":"DEV1-S","image":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:32.530862+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:47:50.306320+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2654" @@ -2222,9 +2333,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:32 GMT + - Fri, 27 Oct 2023 07:47:50 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2234,7 +2345,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d55f222-5c4d-4a5d-9394-86839890ea0d + - 1e8db961-8b70-4d01-8109-814bf58eb94f status: 201 Created code: 201 duration: "" @@ -2243,18 +2354,18 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:32.530862+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:47:50.306320+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2654" @@ -2263,7 +2374,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:33 GMT + - Fri, 27 Oct 2023 07:47:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2273,7 +2384,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7e171b2-1e83-4c10-a0e3-63b5510aaabe + - 6787105e-a3cb-4b39-9a9e-5960398b7f29 status: 200 OK code: 200 duration: "" @@ -2282,18 +2393,18 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:32.530862+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:47:50.306320+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2654" @@ -2302,7 +2413,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:33 GMT + - Fri, 27 Oct 2023 07:47:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2312,7 +2423,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccee4720-1ca9-4c4f-8d12-d6d76c3c4436 + - ea503f54-2b6f-4e02-a40e-18697047dfe5 status: 200 OK code: 200 duration: "" @@ -2323,12 +2434,12 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/action method: POST response: - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/action","href_result":"/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409","id":"ea5596b6-3937-40c9-b814-67ff809b0581","started_at":"2023-10-20T13:48:34.330622+00:00","status":"pending","terminated_at":null}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/action","href_result":"/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","id":"d9f58c13-6a7e-43dc-aa5c-180b2041ad29","started_at":"2023-10-27T07:47:51.339733+00:00","status":"pending","terminated_at":null}}' headers: Content-Length: - "322" @@ -2337,9 +2448,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:34 GMT + - Fri, 27 Oct 2023 07:47:51 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ea5596b6-3937-40c9-b814-67ff809b0581 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d9f58c13-6a7e-43dc-aa5c-180b2041ad29 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2349,7 +2460,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02f439d1-1878-45bc-ad1e-03d661c621d7 + - 3708a395-b670-46e2-9d02-a66e75ccbc2d status: 202 Accepted code: 202 duration: "" @@ -2358,18 +2469,18 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:33.881346+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:47:51.013601+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2676" @@ -2378,7 +2489,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:34 GMT + - Fri, 27 Oct 2023 07:47:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2388,7 +2499,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f0832b7-9839-4ba4-ad1c-b729db601ab8 + - 2886a87e-5bda-4b43-ae4b-a5f22bd7451c status: 200 OK code: 200 duration: "" @@ -2397,27 +2508,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:33.881346+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:47:51.013601+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2782" + - "2783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:39 GMT + - Fri, 27 Oct 2023 07:47:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2427,7 +2538,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 015d0fa4-c2ea-4ab0-bd09-2ab49c683f7f + - 32a8928e-c4f1-4287-886d-6c39c2fa4661 status: 200 OK code: 200 duration: "" @@ -2436,27 +2547,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:33.881346+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:47:51.013601+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2782" + - "2783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:44 GMT + - Fri, 27 Oct 2023 07:48:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2466,7 +2577,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 773eaccd-cda2-4cad-ad72-47c5c2091a4f + - ba53c06d-5823-4b02-915b-4243a41fb4ed status: 200 OK code: 200 duration: "" @@ -2475,27 +2586,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2813" + - "2814" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:50 GMT + - Fri, 27 Oct 2023 07:48:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2505,7 +2616,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 742b78bb-ee41-4882-8eb4-d680777751ae + - febad3fc-e104-48ae-b3e0-f037f03d796e status: 200 OK code: 200 duration: "" @@ -2514,21 +2625,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/6144b80b-8a12-4993-aa65-073e23fd774c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/161831c6-4081-4f6b-940c-6f059525f368 method: GET response: - body: '{"created_at":"2023-10-20T13:48:31.136221Z","id":"6144b80b-8a12-4993-aa65-073e23fd774c","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":["172.16.80.0/22","fd5f:519c:6d46:d64d::/64"],"tags":[],"updated_at":"2023-10-20T13:48:31.136221Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T07:47:49.166464Z","dhcp_enabled":true,"id":"161831c6-4081-4f6b-940c-6f059525f368","name":"private_network_instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:47:49.166464Z","id":"bd0e7733-5c20-45d4-8ddc-a28aea069d30","subnet":"172.16.68.0/22","updated_at":"2023-10-27T07:47:49.166464Z"},{"created_at":"2023-10-27T07:47:49.166464Z","id":"eb3af6ea-438f-4108-befb-90b1eb8a0ab7","subnet":"fd46:78ab:30b8:4672::/64","updated_at":"2023-10-27T07:47:49.166464Z"}],"tags":[],"updated_at":"2023-10-27T07:47:49.166464Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "367" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:50 GMT + - Fri, 27 Oct 2023 07:48:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2538,7 +2649,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd884a68-37bd-413f-97aa-e27ec7666ffb + - 129421ad-4ff3-49a4-a298-0fddc6e6f4c1 status: 200 OK code: 200 duration: "" @@ -2547,27 +2658,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2813" + - "2814" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:50 GMT + - Fri, 27 Oct 2023 07:48:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2577,23 +2688,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2509b912-fc1f-4a51-a755-939975196cbe + - 13c37914-ba67-4576-bc79-651ca6b3fcc6 status: 200 OK code: 200 duration: "" - request: - body: '{"private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c"}' + body: '{"private_network_id":"161831c6-4081-4f6b-940c-6f059525f368"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics method: POST response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:48:50.392896+00:00","id":"44dfb4ad-f027-4412-b2d8-38e96d9ba904","mac_address":"02:00:00:14:57:aa","modification_date":"2023-10-20T13:48:50.392896+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:48:07.195269+00:00","id":"cc4b8e6a-1ad3-438d-a18f-2466d6983e4a","mac_address":"02:00:00:14:73:c1","modification_date":"2023-10-27T07:48:07.195269+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -2602,7 +2713,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:50 GMT + - Fri, 27 Oct 2023 07:48:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2612,7 +2723,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39ecaedb-8c58-457e-b7bc-539eeddf678b + - 398c9755-fbf3-4bfd-a074-7255e865ddf7 status: 201 Created code: 201 duration: "" @@ -2621,12 +2732,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics/44dfb4ad-f027-4412-b2d8-38e96d9ba904 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics/cc4b8e6a-1ad3-438d-a18f-2466d6983e4a method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:48:50.392896+00:00","id":"44dfb4ad-f027-4412-b2d8-38e96d9ba904","mac_address":"02:00:00:14:57:aa","modification_date":"2023-10-20T13:48:50.392896+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:48:07.195269+00:00","id":"cc4b8e6a-1ad3-438d-a18f-2466d6983e4a","mac_address":"02:00:00:14:73:c1","modification_date":"2023-10-27T07:48:07.195269+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -2635,7 +2746,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:51 GMT + - Fri, 27 Oct 2023 07:48:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2645,7 +2756,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e2008c6-1e70-493c-a739-6566e77815e5 + - 75f4a5e7-e26d-40c7-b4d3-cc57e612bdaf status: 200 OK code: 200 duration: "" @@ -2654,12 +2765,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics/44dfb4ad-f027-4412-b2d8-38e96d9ba904 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics/cc4b8e6a-1ad3-438d-a18f-2466d6983e4a method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:48:50.392896+00:00","id":"44dfb4ad-f027-4412-b2d8-38e96d9ba904","mac_address":"02:00:00:14:57:aa","modification_date":"2023-10-20T13:48:51.263198+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:48:07.195269+00:00","id":"cc4b8e6a-1ad3-438d-a18f-2466d6983e4a","mac_address":"02:00:00:14:73:c1","modification_date":"2023-10-27T07:48:10.147070+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -2668,7 +2779,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:48:56 GMT + - Fri, 27 Oct 2023 07:48:12 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2678,7 +2789,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c229bb77-a548-4c27-9340-81bd846880ab + - 104ed56e-4410-43c6-b12b-01d3490d7e0c status: 200 OK code: 200 duration: "" @@ -2687,12 +2798,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics/44dfb4ad-f027-4412-b2d8-38e96d9ba904 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics/cc4b8e6a-1ad3-438d-a18f-2466d6983e4a method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:48:50.392896+00:00","id":"44dfb4ad-f027-4412-b2d8-38e96d9ba904","mac_address":"02:00:00:14:57:aa","modification_date":"2023-10-20T13:48:51.263198+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:48:07.195269+00:00","id":"cc4b8e6a-1ad3-438d-a18f-2466d6983e4a","mac_address":"02:00:00:14:73:c1","modification_date":"2023-10-27T07:48:10.147070+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -2701,7 +2812,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:01 GMT + - Fri, 27 Oct 2023 07:48:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2711,7 +2822,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 568c1390-9fd4-4bcb-80a6-5a7a9e8fd5d0 + - e224af5e-5108-473f-8a6b-d936dbb70ff2 status: 200 OK code: 200 duration: "" @@ -2720,12 +2831,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics/44dfb4ad-f027-4412-b2d8-38e96d9ba904 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics/cc4b8e6a-1ad3-438d-a18f-2466d6983e4a method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:48:50.392896+00:00","id":"44dfb4ad-f027-4412-b2d8-38e96d9ba904","mac_address":"02:00:00:14:57:aa","modification_date":"2023-10-20T13:48:51.263198+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:48:07.195269+00:00","id":"cc4b8e6a-1ad3-438d-a18f-2466d6983e4a","mac_address":"02:00:00:14:73:c1","modification_date":"2023-10-27T07:48:10.147070+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -2734,7 +2845,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:06 GMT + - Fri, 27 Oct 2023 07:48:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2744,7 +2855,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bd2b29b-d750-4dcd-b0d1-465bad183afd + - 75bd054d-6335-49bb-be6a-1a7f6376b296 status: 200 OK code: 200 duration: "" @@ -2753,12 +2864,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics/44dfb4ad-f027-4412-b2d8-38e96d9ba904 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics/cc4b8e6a-1ad3-438d-a18f-2466d6983e4a method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:48:50.392896+00:00","id":"44dfb4ad-f027-4412-b2d8-38e96d9ba904","mac_address":"02:00:00:14:57:aa","modification_date":"2023-10-20T13:48:51.263198+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:48:07.195269+00:00","id":"cc4b8e6a-1ad3-438d-a18f-2466d6983e4a","mac_address":"02:00:00:14:73:c1","modification_date":"2023-10-27T07:48:10.147070+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -2767,7 +2878,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:11 GMT + - Fri, 27 Oct 2023 07:48:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2777,7 +2888,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8543b6b-6c9a-45d4-ac52-aae8908806d1 + - a2738b49-b476-4e0c-8e18-82e7c82a2125 status: 200 OK code: 200 duration: "" @@ -2786,12 +2897,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics/44dfb4ad-f027-4412-b2d8-38e96d9ba904 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics/cc4b8e6a-1ad3-438d-a18f-2466d6983e4a method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:48:50.392896+00:00","id":"44dfb4ad-f027-4412-b2d8-38e96d9ba904","mac_address":"02:00:00:14:57:aa","modification_date":"2023-10-20T13:48:51.263198+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:48:07.195269+00:00","id":"cc4b8e6a-1ad3-438d-a18f-2466d6983e4a","mac_address":"02:00:00:14:73:c1","modification_date":"2023-10-27T07:48:10.147070+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -2800,7 +2911,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:16 GMT + - Fri, 27 Oct 2023 07:48:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2810,7 +2921,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c4d5f9d-1242-40f8-aff2-8e1bd2052527 + - eafd58a5-c080-477d-b251-0168e047cbd6 status: 200 OK code: 200 duration: "" @@ -2819,12 +2930,45 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics/44dfb4ad-f027-4412-b2d8-38e96d9ba904 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics/cc4b8e6a-1ad3-438d-a18f-2466d6983e4a method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:48:50.392896+00:00","id":"44dfb4ad-f027-4412-b2d8-38e96d9ba904","mac_address":"02:00:00:14:57:aa","modification_date":"2023-10-20T13:49:21.629727+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:48:07.195269+00:00","id":"cc4b8e6a-1ad3-438d-a18f-2466d6983e4a","mac_address":"02:00:00:14:73:c1","modification_date":"2023-10-27T07:48:10.147070+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "376" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Oct 2023 07:48:38 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1421018f-eb38-4a6f-924a-66a404fab271 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop + terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics/cc4b8e6a-1ad3-438d-a18f-2466d6983e4a + method: GET + response: + body: '{"private_nic":{"creation_date":"2023-10-27T07:48:07.195269+00:00","id":"cc4b8e6a-1ad3-438d-a18f-2466d6983e4a","mac_address":"02:00:00:14:73:c1","modification_date":"2023-10-27T07:48:38.478525+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "378" @@ -2833,7 +2977,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:22 GMT + - Fri, 27 Oct 2023 07:48:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2843,7 +2987,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2fac434f-b681-433b-bd18-80c921024eb7 + - 40d1a8cc-d6ac-4d8c-9024-7a467c1adaf6 status: 200 OK code: 200 duration: "" @@ -2852,12 +2996,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics/44dfb4ad-f027-4412-b2d8-38e96d9ba904 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics/cc4b8e6a-1ad3-438d-a18f-2466d6983e4a method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:48:50.392896+00:00","id":"44dfb4ad-f027-4412-b2d8-38e96d9ba904","mac_address":"02:00:00:14:57:aa","modification_date":"2023-10-20T13:49:21.629727+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:48:07.195269+00:00","id":"cc4b8e6a-1ad3-438d-a18f-2466d6983e4a","mac_address":"02:00:00:14:73:c1","modification_date":"2023-10-27T07:48:38.478525+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "378" @@ -2866,7 +3010,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:22 GMT + - Fri, 27 Oct 2023 07:48:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2876,7 +3020,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48d9f695-8f08-4464-8c4c-2dc20be3af0b + - 50ebd580-4a35-4ca7-bc8d-70b334aed2d6 status: 200 OK code: 200 duration: "" @@ -2885,27 +3029,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[{"creation_date":"2023-10-20T13:48:50.392896+00:00","id":"44dfb4ad-f027-4412-b2d8-38e96d9ba904","mac_address":"02:00:00:14:57:aa","modification_date":"2023-10-20T13:49:21.629727+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[{"creation_date":"2023-10-27T07:48:07.195269+00:00","id":"cc4b8e6a-1ad3-438d-a18f-2466d6983e4a","mac_address":"02:00:00:14:73:c1","modification_date":"2023-10-27T07:48:38.478525+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3166" + - "3167" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:22 GMT + - Fri, 27 Oct 2023 07:48:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2915,7 +3059,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f259795-e192-4ed7-a416-21ae26fc4070 + - 8d126ab2-e931-40d6-b297-7fbbfff4a11a status: 200 OK code: 200 duration: "" @@ -2924,9 +3068,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/user_data method: GET response: body: '{"user_data":[]}' @@ -2938,7 +3082,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:22 GMT + - Fri, 27 Oct 2023 07:48:43 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2948,7 +3092,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f26d62d-ceb6-45e6-809d-29ae011222cd + - 1e2147bf-57ba-40fa-8fd4-18ae63b955c1 status: 200 OK code: 200 duration: "" @@ -2957,12 +3101,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T13:48:50.392896+00:00","id":"44dfb4ad-f027-4412-b2d8-38e96d9ba904","mac_address":"02:00:00:14:57:aa","modification_date":"2023-10-20T13:49:21.629727+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T07:48:07.195269+00:00","id":"cc4b8e6a-1ad3-438d-a18f-2466d6983e4a","mac_address":"02:00:00:14:73:c1","modification_date":"2023-10-27T07:48:38.478525+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "381" @@ -2971,9 +3115,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:22 GMT + - Fri, 27 Oct 2023 07:48:43 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -2984,7 +3128,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1835b56a-b4f6-42b0-901e-0d0b181f5f40 + - 028deb21-2789-4744-a11e-5acb6e97b054 X-Total-Count: - "1" status: 200 OK @@ -2995,12 +3139,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T13:48:50.392896+00:00","id":"44dfb4ad-f027-4412-b2d8-38e96d9ba904","mac_address":"02:00:00:14:57:aa","modification_date":"2023-10-20T13:49:21.629727+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T07:48:07.195269+00:00","id":"cc4b8e6a-1ad3-438d-a18f-2466d6983e4a","mac_address":"02:00:00:14:73:c1","modification_date":"2023-10-27T07:48:38.478525+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "381" @@ -3009,9 +3153,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:22 GMT + - Fri, 27 Oct 2023 07:48:44 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -3022,7 +3166,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29360720-34be-44ee-b1c0-84dfcbcef4b9 + - 3b79d34e-2798-4b6a-bf8a-d6deae168eed X-Total-Count: - "1" status: 200 OK @@ -3033,12 +3177,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6144b80b-8a12-4993-aa65-073e23fd774c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/161831c6-4081-4f6b-940c-6f059525f368 method: GET response: - body: '{"created_at":"2023-10-20T13:48:31.136221Z","dhcp_enabled":true,"id":"6144b80b-8a12-4993-aa65-073e23fd774c","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T13:48:31.136221Z","id":"68d333ba-17fb-442e-bada-c92078d27a6d","subnet":"172.16.80.0/22","updated_at":"2023-10-20T13:48:31.136221Z"},{"created_at":"2023-10-20T13:48:31.136221Z","id":"70ec41bb-524c-48f3-b031-5d9b088ba7bd","subnet":"fd5f:519c:6d46:d64d::/64","updated_at":"2023-10-20T13:48:31.136221Z"}],"tags":[],"updated_at":"2023-10-20T13:48:31.136221Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2023-10-27T07:47:49.166464Z","dhcp_enabled":true,"id":"161831c6-4081-4f6b-940c-6f059525f368","name":"private_network_instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:47:49.166464Z","id":"bd0e7733-5c20-45d4-8ddc-a28aea069d30","subnet":"172.16.68.0/22","updated_at":"2023-10-27T07:47:49.166464Z"},{"created_at":"2023-10-27T07:47:49.166464Z","id":"eb3af6ea-438f-4108-befb-90b1eb8a0ab7","subnet":"fd46:78ab:30b8:4672::/64","updated_at":"2023-10-27T07:47:49.166464Z"}],"tags":[],"updated_at":"2023-10-27T07:47:49.166464Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "725" @@ -3047,7 +3191,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:23 GMT + - Fri, 27 Oct 2023 07:48:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3057,7 +3201,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f6c9174-6c20-4830-a0bd-63f794413f09 + - d4d84e88-9a68-465a-94a6-2c545c3a99d0 status: 200 OK code: 200 duration: "" @@ -3066,27 +3210,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[{"creation_date":"2023-10-20T13:48:50.392896+00:00","id":"44dfb4ad-f027-4412-b2d8-38e96d9ba904","mac_address":"02:00:00:14:57:aa","modification_date":"2023-10-20T13:49:21.629727+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[{"creation_date":"2023-10-27T07:48:07.195269+00:00","id":"cc4b8e6a-1ad3-438d-a18f-2466d6983e4a","mac_address":"02:00:00:14:73:c1","modification_date":"2023-10-27T07:48:38.478525+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3166" + - "3167" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:23 GMT + - Fri, 27 Oct 2023 07:48:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3096,7 +3240,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 200875b7-ac39-47e0-9cc7-7940ded9f456 + - 0305f8b7-8170-4886-981a-21baa27c460e status: 200 OK code: 200 duration: "" @@ -3105,9 +3249,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/user_data method: GET response: body: '{"user_data":[]}' @@ -3119,7 +3263,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:23 GMT + - Fri, 27 Oct 2023 07:48:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3129,7 +3273,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4de9202-c9e5-46d2-aa9e-12eda15830fd + - d6230842-4d7d-4129-849a-9cfb0ce0a868 status: 200 OK code: 200 duration: "" @@ -3138,12 +3282,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T13:48:50.392896+00:00","id":"44dfb4ad-f027-4412-b2d8-38e96d9ba904","mac_address":"02:00:00:14:57:aa","modification_date":"2023-10-20T13:49:21.629727+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T07:48:07.195269+00:00","id":"cc4b8e6a-1ad3-438d-a18f-2466d6983e4a","mac_address":"02:00:00:14:73:c1","modification_date":"2023-10-27T07:48:38.478525+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "381" @@ -3152,9 +3296,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:23 GMT + - Fri, 27 Oct 2023 07:48:45 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -3165,7 +3309,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9af642f6-9936-4335-8980-0888dd4009b3 + - fb0c7364-7dff-4260-9355-f09100fac17f X-Total-Count: - "1" status: 200 OK @@ -3176,12 +3320,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6144b80b-8a12-4993-aa65-073e23fd774c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/161831c6-4081-4f6b-940c-6f059525f368 method: GET response: - body: '{"created_at":"2023-10-20T13:48:31.136221Z","dhcp_enabled":true,"id":"6144b80b-8a12-4993-aa65-073e23fd774c","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T13:48:31.136221Z","id":"68d333ba-17fb-442e-bada-c92078d27a6d","subnet":"172.16.80.0/22","updated_at":"2023-10-20T13:48:31.136221Z"},{"created_at":"2023-10-20T13:48:31.136221Z","id":"70ec41bb-524c-48f3-b031-5d9b088ba7bd","subnet":"fd5f:519c:6d46:d64d::/64","updated_at":"2023-10-20T13:48:31.136221Z"}],"tags":[],"updated_at":"2023-10-20T13:48:31.136221Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2023-10-27T07:47:49.166464Z","dhcp_enabled":true,"id":"161831c6-4081-4f6b-940c-6f059525f368","name":"private_network_instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:47:49.166464Z","id":"bd0e7733-5c20-45d4-8ddc-a28aea069d30","subnet":"172.16.68.0/22","updated_at":"2023-10-27T07:47:49.166464Z"},{"created_at":"2023-10-27T07:47:49.166464Z","id":"eb3af6ea-438f-4108-befb-90b1eb8a0ab7","subnet":"fd46:78ab:30b8:4672::/64","updated_at":"2023-10-27T07:47:49.166464Z"}],"tags":[],"updated_at":"2023-10-27T07:47:49.166464Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "725" @@ -3190,7 +3334,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:24 GMT + - Fri, 27 Oct 2023 07:48:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3200,7 +3344,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a15cf626-806b-4747-b14c-98c4b9368fed + - 05226dfc-7895-4da9-9444-774031372205 status: 200 OK code: 200 duration: "" @@ -3209,27 +3353,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[{"creation_date":"2023-10-20T13:48:50.392896+00:00","id":"44dfb4ad-f027-4412-b2d8-38e96d9ba904","mac_address":"02:00:00:14:57:aa","modification_date":"2023-10-20T13:49:21.629727+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[{"creation_date":"2023-10-27T07:48:07.195269+00:00","id":"cc4b8e6a-1ad3-438d-a18f-2466d6983e4a","mac_address":"02:00:00:14:73:c1","modification_date":"2023-10-27T07:48:38.478525+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3166" + - "3167" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:24 GMT + - Fri, 27 Oct 2023 07:48:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3239,7 +3383,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 640a2ca9-7364-4e1b-9f3a-ac36ce2ca29d + - 818eb928-4417-4a6a-ba12-5b8ef81f03a1 status: 200 OK code: 200 duration: "" @@ -3248,9 +3392,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/user_data method: GET response: body: '{"user_data":[]}' @@ -3262,7 +3406,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:25 GMT + - Fri, 27 Oct 2023 07:48:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3272,7 +3416,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 674d7a17-3126-41d5-8fc6-08af873f2ca8 + - e2c27066-963c-4d40-94f3-bba25c84c75c status: 200 OK code: 200 duration: "" @@ -3281,12 +3425,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T13:48:50.392896+00:00","id":"44dfb4ad-f027-4412-b2d8-38e96d9ba904","mac_address":"02:00:00:14:57:aa","modification_date":"2023-10-20T13:49:21.629727+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T07:48:07.195269+00:00","id":"cc4b8e6a-1ad3-438d-a18f-2466d6983e4a","mac_address":"02:00:00:14:73:c1","modification_date":"2023-10-27T07:48:38.478525+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "381" @@ -3295,9 +3439,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:25 GMT + - Fri, 27 Oct 2023 07:48:45 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -3308,34 +3452,34 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4bcbfb31-6b9a-45fd-b8b8-9989d9cabc60 + - 09d638ec-a2c8-4aeb-9790-a1ef568cf35f X-Total-Count: - "1" status: 200 OK code: 200 duration: "" - request: - body: '{"name":"private_network_instance_02","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":null,"subnets":null,"vpc_id":null}' + body: '{"name":"private_network_instance_02","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null,"subnets":null,"vpc_id":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"created_at":"2023-10-20T13:49:25.601184Z","dhcp_enabled":true,"id":"fe18faa7-6634-4132-b109-07403444845f","name":"private_network_instance_02","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T13:49:25.601184Z","id":"2f505869-a87d-4ef1-9c50-26a0bf30354e","subnet":"172.16.136.0/22","updated_at":"2023-10-20T13:49:25.601184Z"},{"created_at":"2023-10-20T13:49:25.601184Z","id":"f5e76938-9011-4fbc-8ebf-6828c040f65f","subnet":"fd5f:519c:6d46:cb90::/64","updated_at":"2023-10-20T13:49:25.601184Z"}],"tags":[],"updated_at":"2023-10-20T13:49:25.601184Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2023-10-27T07:48:46.207442Z","dhcp_enabled":true,"id":"040bfff2-f699-4d80-a039-76b58a209bac","name":"private_network_instance_02","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:48:46.207442Z","id":"785affe7-5a45-4707-9985-6f7a258fc428","subnet":"172.16.60.0/22","updated_at":"2023-10-27T07:48:46.207442Z"},{"created_at":"2023-10-27T07:48:46.207442Z","id":"6429a1b4-3860-4dc6-ada2-f58cc135077c","subnet":"fd46:78ab:30b8:f991::/64","updated_at":"2023-10-27T07:48:46.207442Z"}],"tags":[],"updated_at":"2023-10-27T07:48:46.207442Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "729" + - "728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:26 GMT + - Fri, 27 Oct 2023 07:48:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3345,7 +3489,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c5f9952-5254-44b1-aa5d-b97d75f2f088 + - ae90e262-b8c9-4624-831d-c60b0a15b890 status: 200 OK code: 200 duration: "" @@ -3354,21 +3498,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/fe18faa7-6634-4132-b109-07403444845f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/040bfff2-f699-4d80-a039-76b58a209bac method: GET response: - body: '{"created_at":"2023-10-20T13:49:25.601184Z","dhcp_enabled":true,"id":"fe18faa7-6634-4132-b109-07403444845f","name":"private_network_instance_02","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T13:49:25.601184Z","id":"2f505869-a87d-4ef1-9c50-26a0bf30354e","subnet":"172.16.136.0/22","updated_at":"2023-10-20T13:49:25.601184Z"},{"created_at":"2023-10-20T13:49:25.601184Z","id":"f5e76938-9011-4fbc-8ebf-6828c040f65f","subnet":"fd5f:519c:6d46:cb90::/64","updated_at":"2023-10-20T13:49:25.601184Z"}],"tags":[],"updated_at":"2023-10-20T13:49:25.601184Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2023-10-27T07:48:46.207442Z","dhcp_enabled":true,"id":"040bfff2-f699-4d80-a039-76b58a209bac","name":"private_network_instance_02","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:48:46.207442Z","id":"785affe7-5a45-4707-9985-6f7a258fc428","subnet":"172.16.60.0/22","updated_at":"2023-10-27T07:48:46.207442Z"},{"created_at":"2023-10-27T07:48:46.207442Z","id":"6429a1b4-3860-4dc6-ada2-f58cc135077c","subnet":"fd46:78ab:30b8:f991::/64","updated_at":"2023-10-27T07:48:46.207442Z"}],"tags":[],"updated_at":"2023-10-27T07:48:46.207442Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "729" + - "728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:26 GMT + - Fri, 27 Oct 2023 07:48:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3378,7 +3522,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4154a4db-c78a-4627-aded-d7d61dee5b26 + - 00653280-ab23-4cfb-882e-5ca687c72a31 status: 200 OK code: 200 duration: "" @@ -3387,27 +3531,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[{"creation_date":"2023-10-20T13:48:50.392896+00:00","id":"44dfb4ad-f027-4412-b2d8-38e96d9ba904","mac_address":"02:00:00:14:57:aa","modification_date":"2023-10-20T13:49:21.629727+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[{"creation_date":"2023-10-27T07:48:07.195269+00:00","id":"cc4b8e6a-1ad3-438d-a18f-2466d6983e4a","mac_address":"02:00:00:14:73:c1","modification_date":"2023-10-27T07:48:38.478525+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3166" + - "3167" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:26 GMT + - Fri, 27 Oct 2023 07:48:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3417,7 +3561,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 581bb34b-4f96-42ea-9d3a-ce458fbebab9 + - b671c1f3-246c-4b53-86d8-793254590a3a status: 200 OK code: 200 duration: "" @@ -3426,12 +3570,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T13:48:50.392896+00:00","id":"44dfb4ad-f027-4412-b2d8-38e96d9ba904","mac_address":"02:00:00:14:57:aa","modification_date":"2023-10-20T13:49:21.629727+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T07:48:07.195269+00:00","id":"cc4b8e6a-1ad3-438d-a18f-2466d6983e4a","mac_address":"02:00:00:14:73:c1","modification_date":"2023-10-27T07:48:38.478525+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "381" @@ -3440,9 +3584,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:26 GMT + - Fri, 27 Oct 2023 07:48:47 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -3453,7 +3597,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd076d12-80ef-4792-bb4e-cf0fd09c54fd + - 79b1518d-5a90-4e0d-a400-12caaa1426b9 X-Total-Count: - "1" status: 200 OK @@ -3464,27 +3608,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[{"creation_date":"2023-10-20T13:48:50.392896+00:00","id":"44dfb4ad-f027-4412-b2d8-38e96d9ba904","mac_address":"02:00:00:14:57:aa","modification_date":"2023-10-20T13:49:21.629727+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[{"creation_date":"2023-10-27T07:48:07.195269+00:00","id":"cc4b8e6a-1ad3-438d-a18f-2466d6983e4a","mac_address":"02:00:00:14:73:c1","modification_date":"2023-10-27T07:48:38.478525+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3166" + - "3167" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:26 GMT + - Fri, 27 Oct 2023 07:48:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3494,7 +3638,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90812068-5608-4727-9f8f-29cb4aac01b8 + - b0a81651-6472-46fb-bf73-57352581aa2f status: 200 OK code: 200 duration: "" @@ -3503,12 +3647,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics/44dfb4ad-f027-4412-b2d8-38e96d9ba904 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics/cc4b8e6a-1ad3-438d-a18f-2466d6983e4a method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:48:50.392896+00:00","id":"44dfb4ad-f027-4412-b2d8-38e96d9ba904","mac_address":"02:00:00:14:57:aa","modification_date":"2023-10-20T13:49:21.629727+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:48:07.195269+00:00","id":"cc4b8e6a-1ad3-438d-a18f-2466d6983e4a","mac_address":"02:00:00:14:73:c1","modification_date":"2023-10-27T07:48:38.478525+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "378" @@ -3517,7 +3661,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:27 GMT + - Fri, 27 Oct 2023 07:48:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3527,7 +3671,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e709409b-b766-4b62-81ef-4f48bb6b4460 + - 2cd37970-e97c-4ed1-bb28-c37d7e0af90f status: 200 OK code: 200 duration: "" @@ -3536,9 +3680,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics/44dfb4ad-f027-4412-b2d8-38e96d9ba904 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics/cc4b8e6a-1ad3-438d-a18f-2466d6983e4a method: DELETE response: body: "" @@ -3546,7 +3690,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 20 Oct 2023 13:49:27 GMT + - Fri, 27 Oct 2023 07:48:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3556,7 +3700,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9bbc4f83-cb7c-4244-a0aa-325d7332e4fe + - 085e56e6-9f2d-4c8a-89bc-93f6c671e64b status: 204 No Content code: 204 duration: "" @@ -3565,12 +3709,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics/44dfb4ad-f027-4412-b2d8-38e96d9ba904 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics/cc4b8e6a-1ad3-438d-a18f-2466d6983e4a method: GET response: - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"44dfb4ad-f027-4412-b2d8-38e96d9ba904","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"cc4b8e6a-1ad3-438d-a18f-2466d6983e4a","type":"not_found"}' headers: Content-Length: - "148" @@ -3579,7 +3723,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:27 GMT + - Fri, 27 Oct 2023 07:48:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3589,23 +3733,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96ee0c84-a500-4c7d-bdeb-76eede67f391 + - 7b91beef-dd80-4439-8cdb-97f4cfc4e454 status: 404 Not Found code: 404 duration: "" - request: - body: '{"private_network_id":"fe18faa7-6634-4132-b109-07403444845f"}' + body: '{"private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics method: POST response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:27.695247+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:48.770285+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -3614,7 +3758,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:28 GMT + - Fri, 27 Oct 2023 07:48:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3624,7 +3768,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 579bac5f-42a2-4e59-ae30-b4acc113d54e + - 8405074b-de14-473e-9f09-73266cd21a02 status: 201 Created code: 201 duration: "" @@ -3633,12 +3777,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics/f5b5e5e1-32e2-4ff2-968f-0425417183bb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics/47b1fe3a-498e-40b4-b065-7df3f53c8aab method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:27.695247+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:48.770285+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -3647,7 +3791,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:28 GMT + - Fri, 27 Oct 2023 07:48:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3657,7 +3801,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e6e94ef-4d07-4f26-9b32-7a33a5fa0b1d + - 0411bc79-b736-457a-aa4b-04290b7f51ab status: 200 OK code: 200 duration: "" @@ -3666,21 +3810,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics/f5b5e5e1-32e2-4ff2-968f-0425417183bb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics/47b1fe3a-498e-40b4-b065-7df3f53c8aab method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:49.955735+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing_error","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "378" + - "382" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:33 GMT + - Fri, 27 Oct 2023 07:48:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3690,7 +3834,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2dbdef86-65cb-4145-b8e6-631350729818 + - 12176d2e-613f-4640-9519-b8c0ce2f1626 status: 200 OK code: 200 duration: "" @@ -3699,21 +3843,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics/f5b5e5e1-32e2-4ff2-968f-0425417183bb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics/47b1fe3a-498e-40b4-b065-7df3f53c8aab method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:49.955735+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing_error","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "378" + - "382" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:33 GMT + - Fri, 27 Oct 2023 07:48:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3723,7 +3867,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04f1f57b-69aa-4c2d-bbc3-d150dcc009c0 + - f8ea09f4-7c6b-4b5a-a5d8-9206047cf3f6 status: 200 OK code: 200 duration: "" @@ -3734,27 +3878,27 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: PATCH response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:49.955735+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing_error","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3166" + - "3171" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:34 GMT + - Fri, 27 Oct 2023 07:48:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3764,7 +3908,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 643ff804-d6a0-4cf9-84dc-e379906844b0 + - eef513d6-e096-491b-b704-922dfcb87992 status: 200 OK code: 200 duration: "" @@ -3773,27 +3917,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:49.955735+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing_error","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3166" + - "3171" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:34 GMT + - Fri, 27 Oct 2023 07:48:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3803,7 +3947,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3fe632ea-9fe6-47f5-be83-b04773c9daaa + - 307c08ee-e504-4526-b22b-32ebe25fed27 status: 200 OK code: 200 duration: "" @@ -3812,27 +3956,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:49.955735+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing_error","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3166" + - "3171" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:34 GMT + - Fri, 27 Oct 2023 07:48:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3842,7 +3986,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c878387-585d-4a91-9f56-91b294d237a0 + - d8e7d6cf-c6df-44e1-bf07-dabfbc58fbfe status: 200 OK code: 200 duration: "" @@ -3851,9 +3995,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/user_data method: GET response: body: '{"user_data":[]}' @@ -3865,7 +4009,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:34 GMT + - Fri, 27 Oct 2023 07:48:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3875,7 +4019,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5252343-161f-45a6-ac5b-0480f62beec2 + - 00837bf6-bcb3-4e15-bbbe-6aacd634f72e status: 200 OK code: 200 duration: "" @@ -3884,23 +4028,23 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:49.955735+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing_error","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "381" + - "385" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:34 GMT + - Fri, 27 Oct 2023 07:48:55 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -3911,7 +4055,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54d06d6b-d40e-4055-814f-430008115d88 + - a5c799af-a36d-4638-ba26-9f4fa3edd7da X-Total-Count: - "1" status: 200 OK @@ -3922,23 +4066,23 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:49.955735+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing_error","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "381" + - "385" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:34 GMT + - Fri, 27 Oct 2023 07:48:55 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -3949,7 +4093,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f448cab-54bf-4e18-96b5-fcbc9cab2d6c + - 7faa1984-e563-4583-b402-998589d77b04 X-Total-Count: - "1" status: 200 OK @@ -3960,12 +4104,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6144b80b-8a12-4993-aa65-073e23fd774c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/161831c6-4081-4f6b-940c-6f059525f368 method: GET response: - body: '{"created_at":"2023-10-20T13:48:31.136221Z","dhcp_enabled":true,"id":"6144b80b-8a12-4993-aa65-073e23fd774c","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T13:48:31.136221Z","id":"68d333ba-17fb-442e-bada-c92078d27a6d","subnet":"172.16.80.0/22","updated_at":"2023-10-20T13:48:31.136221Z"},{"created_at":"2023-10-20T13:48:31.136221Z","id":"70ec41bb-524c-48f3-b031-5d9b088ba7bd","subnet":"fd5f:519c:6d46:d64d::/64","updated_at":"2023-10-20T13:48:31.136221Z"}],"tags":[],"updated_at":"2023-10-20T13:48:31.136221Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2023-10-27T07:47:49.166464Z","dhcp_enabled":true,"id":"161831c6-4081-4f6b-940c-6f059525f368","name":"private_network_instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:47:49.166464Z","id":"bd0e7733-5c20-45d4-8ddc-a28aea069d30","subnet":"172.16.68.0/22","updated_at":"2023-10-27T07:47:49.166464Z"},{"created_at":"2023-10-27T07:47:49.166464Z","id":"eb3af6ea-438f-4108-befb-90b1eb8a0ab7","subnet":"fd46:78ab:30b8:4672::/64","updated_at":"2023-10-27T07:47:49.166464Z"}],"tags":[],"updated_at":"2023-10-27T07:47:49.166464Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "725" @@ -3974,7 +4118,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:35 GMT + - Fri, 27 Oct 2023 07:48:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3984,7 +4128,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59ce4431-1ccf-4872-882f-e3ca6d81b8b0 + - 15f92a15-03b4-4e24-9214-77dabc19fe0b status: 200 OK code: 200 duration: "" @@ -3993,21 +4137,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/fe18faa7-6634-4132-b109-07403444845f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/040bfff2-f699-4d80-a039-76b58a209bac method: GET response: - body: '{"created_at":"2023-10-20T13:49:25.601184Z","dhcp_enabled":true,"id":"fe18faa7-6634-4132-b109-07403444845f","name":"private_network_instance_02","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T13:49:25.601184Z","id":"2f505869-a87d-4ef1-9c50-26a0bf30354e","subnet":"172.16.136.0/22","updated_at":"2023-10-20T13:49:25.601184Z"},{"created_at":"2023-10-20T13:49:25.601184Z","id":"f5e76938-9011-4fbc-8ebf-6828c040f65f","subnet":"fd5f:519c:6d46:cb90::/64","updated_at":"2023-10-20T13:49:25.601184Z"}],"tags":[],"updated_at":"2023-10-20T13:49:25.601184Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2023-10-27T07:48:46.207442Z","dhcp_enabled":true,"id":"040bfff2-f699-4d80-a039-76b58a209bac","name":"private_network_instance_02","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:48:46.207442Z","id":"785affe7-5a45-4707-9985-6f7a258fc428","subnet":"172.16.60.0/22","updated_at":"2023-10-27T07:48:46.207442Z"},{"created_at":"2023-10-27T07:48:46.207442Z","id":"6429a1b4-3860-4dc6-ada2-f58cc135077c","subnet":"fd46:78ab:30b8:f991::/64","updated_at":"2023-10-27T07:48:46.207442Z"}],"tags":[],"updated_at":"2023-10-27T07:48:46.207442Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "729" + - "728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:35 GMT + - Fri, 27 Oct 2023 07:48:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4017,7 +4161,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dbf89ca5-10bd-4fd6-8d8f-b70f06279e8d + - b3e23187-fb7c-4c2b-8b0a-853fba94a22a status: 200 OK code: 200 duration: "" @@ -4026,27 +4170,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:49.955735+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing_error","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3166" + - "3171" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:35 GMT + - Fri, 27 Oct 2023 07:48:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4056,7 +4200,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8153d32-bdc0-4d3a-bfcd-2d87a16cb503 + - dc06fddb-f770-4eeb-a64a-b4088b7a65d8 status: 200 OK code: 200 duration: "" @@ -4065,9 +4209,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/user_data method: GET response: body: '{"user_data":[]}' @@ -4079,7 +4223,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:35 GMT + - Fri, 27 Oct 2023 07:48:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4089,7 +4233,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 139da04f-f989-480b-8edd-89802d05b3f7 + - 93e55f2d-6b81-4cb6-87b1-158d86cb4d6c status: 200 OK code: 200 duration: "" @@ -4098,23 +4242,23 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:49.955735+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing_error","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "381" + - "385" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:35 GMT + - Fri, 27 Oct 2023 07:48:56 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -4125,7 +4269,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dcc5c470-ed41-4407-83e6-b70c379723de + - 965c2a99-b532-4182-9aa1-20607c09f6c2 X-Total-Count: - "1" status: 200 OK @@ -4136,21 +4280,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/fe18faa7-6634-4132-b109-07403444845f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/161831c6-4081-4f6b-940c-6f059525f368 method: GET response: - body: '{"created_at":"2023-10-20T13:49:25.601184Z","dhcp_enabled":true,"id":"fe18faa7-6634-4132-b109-07403444845f","name":"private_network_instance_02","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T13:49:25.601184Z","id":"2f505869-a87d-4ef1-9c50-26a0bf30354e","subnet":"172.16.136.0/22","updated_at":"2023-10-20T13:49:25.601184Z"},{"created_at":"2023-10-20T13:49:25.601184Z","id":"f5e76938-9011-4fbc-8ebf-6828c040f65f","subnet":"fd5f:519c:6d46:cb90::/64","updated_at":"2023-10-20T13:49:25.601184Z"}],"tags":[],"updated_at":"2023-10-20T13:49:25.601184Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2023-10-27T07:47:49.166464Z","dhcp_enabled":true,"id":"161831c6-4081-4f6b-940c-6f059525f368","name":"private_network_instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:47:49.166464Z","id":"bd0e7733-5c20-45d4-8ddc-a28aea069d30","subnet":"172.16.68.0/22","updated_at":"2023-10-27T07:47:49.166464Z"},{"created_at":"2023-10-27T07:47:49.166464Z","id":"eb3af6ea-438f-4108-befb-90b1eb8a0ab7","subnet":"fd46:78ab:30b8:4672::/64","updated_at":"2023-10-27T07:47:49.166464Z"}],"tags":[],"updated_at":"2023-10-27T07:47:49.166464Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "729" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:36 GMT + - Fri, 27 Oct 2023 07:48:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4160,7 +4304,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46f0ffb0-9242-4c13-9b30-c6f11d602fef + - 4b42ff04-c8d4-426e-8203-b431d736aaff status: 200 OK code: 200 duration: "" @@ -4169,21 +4313,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6144b80b-8a12-4993-aa65-073e23fd774c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/040bfff2-f699-4d80-a039-76b58a209bac method: GET response: - body: '{"created_at":"2023-10-20T13:48:31.136221Z","dhcp_enabled":true,"id":"6144b80b-8a12-4993-aa65-073e23fd774c","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T13:48:31.136221Z","id":"68d333ba-17fb-442e-bada-c92078d27a6d","subnet":"172.16.80.0/22","updated_at":"2023-10-20T13:48:31.136221Z"},{"created_at":"2023-10-20T13:48:31.136221Z","id":"70ec41bb-524c-48f3-b031-5d9b088ba7bd","subnet":"fd5f:519c:6d46:d64d::/64","updated_at":"2023-10-20T13:48:31.136221Z"}],"tags":[],"updated_at":"2023-10-20T13:48:31.136221Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2023-10-27T07:48:46.207442Z","dhcp_enabled":true,"id":"040bfff2-f699-4d80-a039-76b58a209bac","name":"private_network_instance_02","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:48:46.207442Z","id":"785affe7-5a45-4707-9985-6f7a258fc428","subnet":"172.16.60.0/22","updated_at":"2023-10-27T07:48:46.207442Z"},{"created_at":"2023-10-27T07:48:46.207442Z","id":"6429a1b4-3860-4dc6-ada2-f58cc135077c","subnet":"fd46:78ab:30b8:f991::/64","updated_at":"2023-10-27T07:48:46.207442Z"}],"tags":[],"updated_at":"2023-10-27T07:48:46.207442Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "725" + - "728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:36 GMT + - Fri, 27 Oct 2023 07:48:56 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4193,7 +4337,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40c2dd0a-58d1-45f9-99b6-0389e4a7698b + - 29193047-0caf-41ca-96e0-0c3e8c80253c status: 200 OK code: 200 duration: "" @@ -4202,27 +4346,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:49.955735+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing_error","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3166" + - "3171" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:36 GMT + - Fri, 27 Oct 2023 07:48:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4232,7 +4376,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c8b0aa5-98a0-4ed3-8e6b-8e06100fda77 + - c17ca85c-3302-4e5c-9ca4-381d97a8016d status: 200 OK code: 200 duration: "" @@ -4241,9 +4385,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/user_data method: GET response: body: '{"user_data":[]}' @@ -4255,7 +4399,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:36 GMT + - Fri, 27 Oct 2023 07:48:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4265,7 +4409,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ca46457-8964-457e-b729-6e482ab7bb24 + - bdaf6ccc-3b75-4856-88f8-6ee662218d87 status: 200 OK code: 200 duration: "" @@ -4274,23 +4418,23 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:49.955735+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing_error","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "381" + - "385" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:36 GMT + - Fri, 27 Oct 2023 07:48:57 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -4301,7 +4445,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8bef8a8-0d7f-4ab4-ab5a-79579c8bc98e + - 566742ac-fc9c-4c58-86b4-f71dfe8a8300 X-Total-Count: - "1" status: 200 OK @@ -4312,27 +4456,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:49.955735+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing_error","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3166" + - "3171" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:37 GMT + - Fri, 27 Oct 2023 07:48:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4342,7 +4486,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6325e19-7456-4de7-af27-81ba958d73ed + - 8351d77d-0b6c-4c69-8241-ac6bb14503c8 status: 200 OK code: 200 duration: "" @@ -4351,23 +4495,23 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:49.955735+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing_error","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "381" + - "385" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:37 GMT + - Fri, 27 Oct 2023 07:48:57 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -4378,7 +4522,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b77402a-5aac-402d-9663-5a03e45f61dc + - 0d7d8293-65d5-4c06-ab78-82d24a44b3b1 X-Total-Count: - "1" status: 200 OK @@ -4389,27 +4533,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:49.955735+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing_error","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3166" + - "3171" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:37 GMT + - Fri, 27 Oct 2023 07:48:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4419,23 +4563,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b6ba253-167c-48fd-921a-1f73d0748adc + - 82e35fec-db25-447a-aa55-7f894ccdba74 status: 200 OK code: 200 duration: "" - request: - body: '{"private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c"}' + body: '{"private_network_id":"161831c6-4081-4f6b-940c-6f059525f368"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics method: POST response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:49:37.761036+00:00","id":"3daa88c2-a585-4366-88d5-ba60ce1d8d57","mac_address":"02:00:00:14:57:ad","modification_date":"2023-10-20T13:49:37.761036+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:48:58.016194+00:00","id":"4c1a27e1-bd3a-4af2-8b2f-c2532f283a02","mac_address":"02:00:00:14:73:c4","modification_date":"2023-10-27T07:48:58.016194+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -4444,7 +4588,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:38 GMT + - Fri, 27 Oct 2023 07:48:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4454,7 +4598,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09024d32-0a0e-4ede-885d-4153f36b7f18 + - 22ec2621-3969-45cb-8956-62729798b1f3 status: 201 Created code: 201 duration: "" @@ -4463,12 +4607,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics/3daa88c2-a585-4366-88d5-ba60ce1d8d57 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics/4c1a27e1-bd3a-4af2-8b2f-c2532f283a02 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:49:37.761036+00:00","id":"3daa88c2-a585-4366-88d5-ba60ce1d8d57","mac_address":"02:00:00:14:57:ad","modification_date":"2023-10-20T13:49:37.761036+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:48:58.016194+00:00","id":"4c1a27e1-bd3a-4af2-8b2f-c2532f283a02","mac_address":"02:00:00:14:73:c4","modification_date":"2023-10-27T07:48:58.016194+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -4477,7 +4621,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:38 GMT + - Fri, 27 Oct 2023 07:48:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4487,7 +4631,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 437a4928-2302-44a1-bb73-e51789d4ba23 + - aa07825d-392b-49dc-b88e-be3fb8858ac0 status: 200 OK code: 200 duration: "" @@ -4496,12 +4640,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics/3daa88c2-a585-4366-88d5-ba60ce1d8d57 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics/4c1a27e1-bd3a-4af2-8b2f-c2532f283a02 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:49:37.761036+00:00","id":"3daa88c2-a585-4366-88d5-ba60ce1d8d57","mac_address":"02:00:00:14:57:ad","modification_date":"2023-10-20T13:49:38.613222+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:48:58.016194+00:00","id":"4c1a27e1-bd3a-4af2-8b2f-c2532f283a02","mac_address":"02:00:00:14:73:c4","modification_date":"2023-10-27T07:49:00.018178+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "378" @@ -4510,7 +4654,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:43 GMT + - Fri, 27 Oct 2023 07:49:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4520,7 +4664,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c462803-26e4-4795-8ea1-1ec2dba5a0e1 + - 6b43128e-a3eb-49a1-80c0-a3f316ef10bf status: 200 OK code: 200 duration: "" @@ -4529,12 +4673,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics/3daa88c2-a585-4366-88d5-ba60ce1d8d57 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics/4c1a27e1-bd3a-4af2-8b2f-c2532f283a02 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:49:37.761036+00:00","id":"3daa88c2-a585-4366-88d5-ba60ce1d8d57","mac_address":"02:00:00:14:57:ad","modification_date":"2023-10-20T13:49:38.613222+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:48:58.016194+00:00","id":"4c1a27e1-bd3a-4af2-8b2f-c2532f283a02","mac_address":"02:00:00:14:73:c4","modification_date":"2023-10-27T07:49:00.018178+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "378" @@ -4543,7 +4687,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:43 GMT + - Fri, 27 Oct 2023 07:49:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4553,7 +4697,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb880df8-83dc-48ad-8f9c-632bea3c82db + - ae0a7a60-1005-4cf8-bc10-9f1a94f24030 status: 200 OK code: 200 duration: "" @@ -4564,27 +4708,27 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: PATCH response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[{"creation_date":"2023-10-20T13:49:37.761036+00:00","id":"3daa88c2-a585-4366-88d5-ba60ce1d8d57","mac_address":"02:00:00:14:57:ad","modification_date":"2023-10-20T13:49:38.613222+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[{"creation_date":"2023-10-27T07:48:58.016194+00:00","id":"4c1a27e1-bd3a-4af2-8b2f-c2532f283a02","mac_address":"02:00:00:14:73:c4","modification_date":"2023-10-27T07:49:00.018178+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:59.170835+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3529" + - "3530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:43 GMT + - Fri, 27 Oct 2023 07:49:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4594,7 +4738,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e70ac17f-05a8-4506-8b9a-3b1681008c98 + - 84339b0a-57ed-44e6-b96d-1a2b1cbbf394 status: 200 OK code: 200 duration: "" @@ -4603,27 +4747,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[{"creation_date":"2023-10-20T13:49:37.761036+00:00","id":"3daa88c2-a585-4366-88d5-ba60ce1d8d57","mac_address":"02:00:00:14:57:ad","modification_date":"2023-10-20T13:49:38.613222+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[{"creation_date":"2023-10-27T07:48:58.016194+00:00","id":"4c1a27e1-bd3a-4af2-8b2f-c2532f283a02","mac_address":"02:00:00:14:73:c4","modification_date":"2023-10-27T07:49:00.018178+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:59.170835+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3529" + - "3530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:44 GMT + - Fri, 27 Oct 2023 07:49:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4633,7 +4777,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2eb329cc-4c05-4d13-bdba-51ff7816666e + - 1bf99581-1c6c-455a-8ea0-78437b6c29a4 status: 200 OK code: 200 duration: "" @@ -4642,27 +4786,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[{"creation_date":"2023-10-20T13:49:37.761036+00:00","id":"3daa88c2-a585-4366-88d5-ba60ce1d8d57","mac_address":"02:00:00:14:57:ad","modification_date":"2023-10-20T13:49:38.613222+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[{"creation_date":"2023-10-27T07:48:58.016194+00:00","id":"4c1a27e1-bd3a-4af2-8b2f-c2532f283a02","mac_address":"02:00:00:14:73:c4","modification_date":"2023-10-27T07:49:00.018178+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:59.170835+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3529" + - "3530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:44 GMT + - Fri, 27 Oct 2023 07:49:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4672,7 +4816,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db685438-723f-4f86-9a67-5927e26ed2e5 + - bdd9e65a-b3ce-4b7b-97bd-8a18b874f78e status: 200 OK code: 200 duration: "" @@ -4681,9 +4825,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/user_data method: GET response: body: '{"user_data":[]}' @@ -4695,7 +4839,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:44 GMT + - Fri, 27 Oct 2023 07:49:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4705,7 +4849,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b5ebee7-52e1-4885-81b9-b8553e9c86b5 + - 6011bed4-ddcd-4605-ae9d-1d54ab4f3fcd status: 200 OK code: 200 duration: "" @@ -4714,12 +4858,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T13:49:37.761036+00:00","id":"3daa88c2-a585-4366-88d5-ba60ce1d8d57","mac_address":"02:00:00:14:57:ad","modification_date":"2023-10-20T13:49:38.613222+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T07:48:58.016194+00:00","id":"4c1a27e1-bd3a-4af2-8b2f-c2532f283a02","mac_address":"02:00:00:14:73:c4","modification_date":"2023-10-27T07:49:00.018178+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:59.170835+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "744" @@ -4728,9 +4872,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:44 GMT + - Fri, 27 Oct 2023 07:49:04 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -4741,7 +4885,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c961ff1-2eeb-4243-822e-55e298ec432d + - 1fc03abd-f917-41ed-b7ad-5695f79b73af X-Total-Count: - "2" status: 200 OK @@ -4752,12 +4896,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T13:49:37.761036+00:00","id":"3daa88c2-a585-4366-88d5-ba60ce1d8d57","mac_address":"02:00:00:14:57:ad","modification_date":"2023-10-20T13:49:38.613222+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T07:48:58.016194+00:00","id":"4c1a27e1-bd3a-4af2-8b2f-c2532f283a02","mac_address":"02:00:00:14:73:c4","modification_date":"2023-10-27T07:49:00.018178+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:59.170835+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "744" @@ -4766,9 +4910,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:44 GMT + - Fri, 27 Oct 2023 07:49:04 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -4779,7 +4923,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34aeb481-142d-4d02-8dc0-32a105f82ad5 + - d90a197f-32a2-4dd5-8d7d-80496413ef12 X-Total-Count: - "2" status: 200 OK @@ -4790,21 +4934,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/fe18faa7-6634-4132-b109-07403444845f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/040bfff2-f699-4d80-a039-76b58a209bac method: GET response: - body: '{"created_at":"2023-10-20T13:49:25.601184Z","dhcp_enabled":true,"id":"fe18faa7-6634-4132-b109-07403444845f","name":"private_network_instance_02","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T13:49:25.601184Z","id":"2f505869-a87d-4ef1-9c50-26a0bf30354e","subnet":"172.16.136.0/22","updated_at":"2023-10-20T13:49:25.601184Z"},{"created_at":"2023-10-20T13:49:25.601184Z","id":"f5e76938-9011-4fbc-8ebf-6828c040f65f","subnet":"fd5f:519c:6d46:cb90::/64","updated_at":"2023-10-20T13:49:25.601184Z"}],"tags":[],"updated_at":"2023-10-20T13:49:25.601184Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2023-10-27T07:48:46.207442Z","dhcp_enabled":true,"id":"040bfff2-f699-4d80-a039-76b58a209bac","name":"private_network_instance_02","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:48:46.207442Z","id":"785affe7-5a45-4707-9985-6f7a258fc428","subnet":"172.16.60.0/22","updated_at":"2023-10-27T07:48:46.207442Z"},{"created_at":"2023-10-27T07:48:46.207442Z","id":"6429a1b4-3860-4dc6-ada2-f58cc135077c","subnet":"fd46:78ab:30b8:f991::/64","updated_at":"2023-10-27T07:48:46.207442Z"}],"tags":[],"updated_at":"2023-10-27T07:48:46.207442Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "729" + - "728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:45 GMT + - Fri, 27 Oct 2023 07:49:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4814,7 +4958,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40512577-2949-435e-994c-dd9725d7f708 + - 2b737a6f-81dd-42fd-93d8-3025e80059e9 status: 200 OK code: 200 duration: "" @@ -4823,12 +4967,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6144b80b-8a12-4993-aa65-073e23fd774c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/161831c6-4081-4f6b-940c-6f059525f368 method: GET response: - body: '{"created_at":"2023-10-20T13:48:31.136221Z","dhcp_enabled":true,"id":"6144b80b-8a12-4993-aa65-073e23fd774c","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T13:48:31.136221Z","id":"68d333ba-17fb-442e-bada-c92078d27a6d","subnet":"172.16.80.0/22","updated_at":"2023-10-20T13:48:31.136221Z"},{"created_at":"2023-10-20T13:48:31.136221Z","id":"70ec41bb-524c-48f3-b031-5d9b088ba7bd","subnet":"fd5f:519c:6d46:d64d::/64","updated_at":"2023-10-20T13:48:31.136221Z"}],"tags":[],"updated_at":"2023-10-20T13:48:31.136221Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2023-10-27T07:47:49.166464Z","dhcp_enabled":true,"id":"161831c6-4081-4f6b-940c-6f059525f368","name":"private_network_instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:47:49.166464Z","id":"bd0e7733-5c20-45d4-8ddc-a28aea069d30","subnet":"172.16.68.0/22","updated_at":"2023-10-27T07:47:49.166464Z"},{"created_at":"2023-10-27T07:47:49.166464Z","id":"eb3af6ea-438f-4108-befb-90b1eb8a0ab7","subnet":"fd46:78ab:30b8:4672::/64","updated_at":"2023-10-27T07:47:49.166464Z"}],"tags":[],"updated_at":"2023-10-27T07:47:49.166464Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "725" @@ -4837,7 +4981,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:45 GMT + - Fri, 27 Oct 2023 07:49:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4847,7 +4991,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3884e3c7-f3a1-4d0e-8489-fb2e25bd20cf + - 3aa1e259-2f64-490f-8d88-ff342e0f984f status: 200 OK code: 200 duration: "" @@ -4856,27 +5000,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[{"creation_date":"2023-10-20T13:49:37.761036+00:00","id":"3daa88c2-a585-4366-88d5-ba60ce1d8d57","mac_address":"02:00:00:14:57:ad","modification_date":"2023-10-20T13:49:38.613222+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[{"creation_date":"2023-10-27T07:48:58.016194+00:00","id":"4c1a27e1-bd3a-4af2-8b2f-c2532f283a02","mac_address":"02:00:00:14:73:c4","modification_date":"2023-10-27T07:49:00.018178+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:59.170835+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3529" + - "3530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:45 GMT + - Fri, 27 Oct 2023 07:49:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4886,7 +5030,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 637fb256-110c-4bae-abeb-7e21ecf030d4 + - 4a20633c-9e4d-4bfd-bbbc-98d2bef0bd19 status: 200 OK code: 200 duration: "" @@ -4895,9 +5039,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/user_data method: GET response: body: '{"user_data":[]}' @@ -4909,7 +5053,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:45 GMT + - Fri, 27 Oct 2023 07:49:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4919,7 +5063,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6a821b3-a8ac-41f1-b375-2078a1c0cac8 + - 59709a25-020e-47de-9fa1-b9a37e25daf3 status: 200 OK code: 200 duration: "" @@ -4928,12 +5072,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T13:49:37.761036+00:00","id":"3daa88c2-a585-4366-88d5-ba60ce1d8d57","mac_address":"02:00:00:14:57:ad","modification_date":"2023-10-20T13:49:38.613222+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T07:48:58.016194+00:00","id":"4c1a27e1-bd3a-4af2-8b2f-c2532f283a02","mac_address":"02:00:00:14:73:c4","modification_date":"2023-10-27T07:49:00.018178+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:59.170835+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "744" @@ -4942,9 +5086,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:45 GMT + - Fri, 27 Oct 2023 07:49:05 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -4955,7 +5099,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fbb28bc-955e-49bd-a42c-55abd893e2a0 + - 77a7d8f4-333b-4c01-84a6-dee2026b988e X-Total-Count: - "2" status: 200 OK @@ -4966,21 +5110,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6144b80b-8a12-4993-aa65-073e23fd774c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/040bfff2-f699-4d80-a039-76b58a209bac method: GET response: - body: '{"created_at":"2023-10-20T13:48:31.136221Z","dhcp_enabled":true,"id":"6144b80b-8a12-4993-aa65-073e23fd774c","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T13:48:31.136221Z","id":"68d333ba-17fb-442e-bada-c92078d27a6d","subnet":"172.16.80.0/22","updated_at":"2023-10-20T13:48:31.136221Z"},{"created_at":"2023-10-20T13:48:31.136221Z","id":"70ec41bb-524c-48f3-b031-5d9b088ba7bd","subnet":"fd5f:519c:6d46:d64d::/64","updated_at":"2023-10-20T13:48:31.136221Z"}],"tags":[],"updated_at":"2023-10-20T13:48:31.136221Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2023-10-27T07:48:46.207442Z","dhcp_enabled":true,"id":"040bfff2-f699-4d80-a039-76b58a209bac","name":"private_network_instance_02","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:48:46.207442Z","id":"785affe7-5a45-4707-9985-6f7a258fc428","subnet":"172.16.60.0/22","updated_at":"2023-10-27T07:48:46.207442Z"},{"created_at":"2023-10-27T07:48:46.207442Z","id":"6429a1b4-3860-4dc6-ada2-f58cc135077c","subnet":"fd46:78ab:30b8:f991::/64","updated_at":"2023-10-27T07:48:46.207442Z"}],"tags":[],"updated_at":"2023-10-27T07:48:46.207442Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "725" + - "728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:45 GMT + - Fri, 27 Oct 2023 07:49:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4990,7 +5134,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7035c444-c144-4701-b790-3bb44d0b7ea3 + - c27ce7ce-b1fb-4d0f-99e4-d11536f63386 status: 200 OK code: 200 duration: "" @@ -4999,21 +5143,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/fe18faa7-6634-4132-b109-07403444845f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/161831c6-4081-4f6b-940c-6f059525f368 method: GET response: - body: '{"created_at":"2023-10-20T13:49:25.601184Z","dhcp_enabled":true,"id":"fe18faa7-6634-4132-b109-07403444845f","name":"private_network_instance_02","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T13:49:25.601184Z","id":"2f505869-a87d-4ef1-9c50-26a0bf30354e","subnet":"172.16.136.0/22","updated_at":"2023-10-20T13:49:25.601184Z"},{"created_at":"2023-10-20T13:49:25.601184Z","id":"f5e76938-9011-4fbc-8ebf-6828c040f65f","subnet":"fd5f:519c:6d46:cb90::/64","updated_at":"2023-10-20T13:49:25.601184Z"}],"tags":[],"updated_at":"2023-10-20T13:49:25.601184Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2023-10-27T07:47:49.166464Z","dhcp_enabled":true,"id":"161831c6-4081-4f6b-940c-6f059525f368","name":"private_network_instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:47:49.166464Z","id":"bd0e7733-5c20-45d4-8ddc-a28aea069d30","subnet":"172.16.68.0/22","updated_at":"2023-10-27T07:47:49.166464Z"},{"created_at":"2023-10-27T07:47:49.166464Z","id":"eb3af6ea-438f-4108-befb-90b1eb8a0ab7","subnet":"fd46:78ab:30b8:4672::/64","updated_at":"2023-10-27T07:47:49.166464Z"}],"tags":[],"updated_at":"2023-10-27T07:47:49.166464Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "729" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:45 GMT + - Fri, 27 Oct 2023 07:49:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5023,7 +5167,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c3bdb84-f339-41f6-b4c9-36410b6a7c64 + - b68f3da3-6da7-4d93-9b7d-9d1c3320c29a status: 200 OK code: 200 duration: "" @@ -5032,27 +5176,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[{"creation_date":"2023-10-20T13:49:37.761036+00:00","id":"3daa88c2-a585-4366-88d5-ba60ce1d8d57","mac_address":"02:00:00:14:57:ad","modification_date":"2023-10-20T13:49:38.613222+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[{"creation_date":"2023-10-27T07:48:58.016194+00:00","id":"4c1a27e1-bd3a-4af2-8b2f-c2532f283a02","mac_address":"02:00:00:14:73:c4","modification_date":"2023-10-27T07:49:00.018178+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:59.170835+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3529" + - "3530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:45 GMT + - Fri, 27 Oct 2023 07:49:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5062,7 +5206,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42ee54c7-9200-486e-9601-809cea0ebba5 + - e69e7e7a-3c60-400f-9870-3bc18be42afe status: 200 OK code: 200 duration: "" @@ -5071,9 +5215,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/user_data method: GET response: body: '{"user_data":[]}' @@ -5085,7 +5229,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:46 GMT + - Fri, 27 Oct 2023 07:49:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5095,7 +5239,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f482f49-aab2-4a6e-92b9-34220b9c77bd + - 75acbd0f-3d1b-4f85-84d1-9364402303cc status: 200 OK code: 200 duration: "" @@ -5104,12 +5248,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T13:49:37.761036+00:00","id":"3daa88c2-a585-4366-88d5-ba60ce1d8d57","mac_address":"02:00:00:14:57:ad","modification_date":"2023-10-20T13:49:38.613222+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T07:48:58.016194+00:00","id":"4c1a27e1-bd3a-4af2-8b2f-c2532f283a02","mac_address":"02:00:00:14:73:c4","modification_date":"2023-10-27T07:49:00.018178+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:59.170835+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "744" @@ -5118,9 +5262,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:46 GMT + - Fri, 27 Oct 2023 07:49:05 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -5131,7 +5275,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2aa56a65-36cd-4a89-8256-56cac8895f76 + - 545e1045-ee7b-490a-985d-884a6d74a380 X-Total-Count: - "2" status: 200 OK @@ -5142,27 +5286,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[{"creation_date":"2023-10-20T13:49:37.761036+00:00","id":"3daa88c2-a585-4366-88d5-ba60ce1d8d57","mac_address":"02:00:00:14:57:ad","modification_date":"2023-10-20T13:49:38.613222+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[{"creation_date":"2023-10-27T07:48:58.016194+00:00","id":"4c1a27e1-bd3a-4af2-8b2f-c2532f283a02","mac_address":"02:00:00:14:73:c4","modification_date":"2023-10-27T07:49:00.018178+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:59.170835+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3529" + - "3530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:46 GMT + - Fri, 27 Oct 2023 07:49:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5172,7 +5316,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9bfa5f9-4c9e-4e97-b8dc-578404cfb79a + - 9c53db8c-9a18-44ce-9f5d-aa1a73c6adda status: 200 OK code: 200 duration: "" @@ -5181,12 +5325,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T13:49:37.761036+00:00","id":"3daa88c2-a585-4366-88d5-ba60ce1d8d57","mac_address":"02:00:00:14:57:ad","modification_date":"2023-10-20T13:49:38.613222+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T07:48:58.016194+00:00","id":"4c1a27e1-bd3a-4af2-8b2f-c2532f283a02","mac_address":"02:00:00:14:73:c4","modification_date":"2023-10-27T07:49:00.018178+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:59.170835+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "744" @@ -5195,9 +5339,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:47 GMT + - Fri, 27 Oct 2023 07:49:06 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -5208,7 +5352,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3748eb0-e88f-4ff4-8176-a2617f7746e0 + - 0769605a-8702-45a1-af30-a17c9df79def X-Total-Count: - "2" status: 200 OK @@ -5219,27 +5363,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[{"creation_date":"2023-10-20T13:49:37.761036+00:00","id":"3daa88c2-a585-4366-88d5-ba60ce1d8d57","mac_address":"02:00:00:14:57:ad","modification_date":"2023-10-20T13:49:38.613222+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[{"creation_date":"2023-10-27T07:48:58.016194+00:00","id":"4c1a27e1-bd3a-4af2-8b2f-c2532f283a02","mac_address":"02:00:00:14:73:c4","modification_date":"2023-10-27T07:49:00.018178+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:59.170835+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3529" + - "3530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:47 GMT + - Fri, 27 Oct 2023 07:49:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5249,7 +5393,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08c2aacf-ba7e-435d-8c66-47c977a54c4a + - ea2ace0e-14f1-49a1-8cdd-b9b13d280965 status: 200 OK code: 200 duration: "" @@ -5258,12 +5402,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics/f5b5e5e1-32e2-4ff2-968f-0425417183bb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics/47b1fe3a-498e-40b4-b065-7df3f53c8aab method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:49:27.695247+00:00","id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","mac_address":"02:00:00:14:57:ac","modification_date":"2023-10-20T13:49:28.550515+00:00","private_network_id":"fe18faa7-6634-4132-b109-07403444845f","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:48:48.770285+00:00","id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","mac_address":"02:00:00:14:73:c3","modification_date":"2023-10-27T07:48:59.170835+00:00","private_network_id":"040bfff2-f699-4d80-a039-76b58a209bac","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "378" @@ -5272,7 +5416,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:47 GMT + - Fri, 27 Oct 2023 07:49:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5282,7 +5426,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9efa880f-1fbf-45d7-a05c-c512995d0df6 + - 5e26baa4-fc3c-44e7-aa25-300fd87567f1 status: 200 OK code: 200 duration: "" @@ -5291,9 +5435,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics/f5b5e5e1-32e2-4ff2-968f-0425417183bb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics/47b1fe3a-498e-40b4-b065-7df3f53c8aab method: DELETE response: body: "" @@ -5301,7 +5445,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 20 Oct 2023 13:49:48 GMT + - Fri, 27 Oct 2023 07:49:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5311,7 +5455,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54f81ecd-60ea-41b6-9986-e34aae1f5b67 + - e47c3537-8ccd-42af-9411-96fd79759a1d status: 204 No Content code: 204 duration: "" @@ -5320,12 +5464,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics/f5b5e5e1-32e2-4ff2-968f-0425417183bb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics/47b1fe3a-498e-40b4-b065-7df3f53c8aab method: GET response: - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"f5b5e5e1-32e2-4ff2-968f-0425417183bb","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"47b1fe3a-498e-40b4-b065-7df3f53c8aab","type":"not_found"}' headers: Content-Length: - "148" @@ -5334,7 +5478,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:48 GMT + - Fri, 27 Oct 2023 07:49:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5344,7 +5488,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cff4f4a6-fc50-4cc4-bb52-088bbfc0e814 + - 8c8c7225-e70b-480b-9a13-b049ca924648 status: 404 Not Found code: 404 duration: "" @@ -5353,27 +5497,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[{"creation_date":"2023-10-20T13:49:37.761036+00:00","id":"3daa88c2-a585-4366-88d5-ba60ce1d8d57","mac_address":"02:00:00:14:57:ad","modification_date":"2023-10-20T13:49:38.613222+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[{"creation_date":"2023-10-27T07:48:58.016194+00:00","id":"4c1a27e1-bd3a-4af2-8b2f-c2532f283a02","mac_address":"02:00:00:14:73:c4","modification_date":"2023-10-27T07:49:00.018178+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3166" + - "3167" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:48 GMT + - Fri, 27 Oct 2023 07:49:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5383,7 +5527,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db806e9c-9343-4e3a-977b-dd0ceee2138f + - ca646832-d0d6-4fe4-b357-1075f62e5fd7 status: 200 OK code: 200 duration: "" @@ -5392,12 +5536,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics/3daa88c2-a585-4366-88d5-ba60ce1d8d57 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics/4c1a27e1-bd3a-4af2-8b2f-c2532f283a02 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T13:49:37.761036+00:00","id":"3daa88c2-a585-4366-88d5-ba60ce1d8d57","mac_address":"02:00:00:14:57:ad","modification_date":"2023-10-20T13:49:38.613222+00:00","private_network_id":"6144b80b-8a12-4993-aa65-073e23fd774c","server_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:48:58.016194+00:00","id":"4c1a27e1-bd3a-4af2-8b2f-c2532f283a02","mac_address":"02:00:00:14:73:c4","modification_date":"2023-10-27T07:49:00.018178+00:00","private_network_id":"161831c6-4081-4f6b-940c-6f059525f368","server_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "378" @@ -5406,7 +5550,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:48 GMT + - Fri, 27 Oct 2023 07:49:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5416,7 +5560,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6315ea6-06e2-428e-8190-d09ba4eb6744 + - 7dc993b0-2b46-4601-848f-6e96ef8bb2d1 status: 200 OK code: 200 duration: "" @@ -5425,9 +5569,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics/3daa88c2-a585-4366-88d5-ba60ce1d8d57 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics/4c1a27e1-bd3a-4af2-8b2f-c2532f283a02 method: DELETE response: body: "" @@ -5435,7 +5579,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 20 Oct 2023 13:49:49 GMT + - Fri, 27 Oct 2023 07:49:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5445,7 +5589,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e78a3345-98db-43bc-8321-61d3eb09b894 + - 301be965-bfc5-49ed-bd93-10d67ba12000 status: 204 No Content code: 204 duration: "" @@ -5454,12 +5598,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics/3daa88c2-a585-4366-88d5-ba60ce1d8d57 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics/4c1a27e1-bd3a-4af2-8b2f-c2532f283a02 method: GET response: - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"3daa88c2-a585-4366-88d5-ba60ce1d8d57","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"4c1a27e1-bd3a-4af2-8b2f-c2532f283a02","type":"not_found"}' headers: Content-Length: - "148" @@ -5468,7 +5612,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:49 GMT + - Fri, 27 Oct 2023 07:49:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5478,7 +5622,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4ec29a4-64a8-4bfd-83e0-dd501751b9e8 + - 46a646d4-2548-4eaa-82b1-b71b6443bd8f status: 404 Not Found code: 404 duration: "" @@ -5489,27 +5633,27 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: PATCH response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2805" + - "2806" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:49 GMT + - Fri, 27 Oct 2023 07:49:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5519,7 +5663,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3770000f-01bf-4e1d-ad60-41d65390ef5d + - 6194c70a-970e-415c-b86d-f1fba88d43cc status: 200 OK code: 200 duration: "" @@ -5528,27 +5672,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2805" + - "2806" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:50 GMT + - Fri, 27 Oct 2023 07:49:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5558,7 +5702,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9db84d0a-fd75-4d19-8256-45db93aed023 + - e13f56c2-2025-4fbe-ba4e-b0737e5895a4 status: 200 OK code: 200 duration: "" @@ -5567,27 +5711,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2805" + - "2806" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:50 GMT + - Fri, 27 Oct 2023 07:49:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5597,7 +5741,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b5baecc-84b0-45f9-985c-59cd8ee068bb + - 3c3b767c-233d-4acd-b0d1-a4f77ee5d359 status: 200 OK code: 200 duration: "" @@ -5606,9 +5750,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/user_data method: GET response: body: '{"user_data":[]}' @@ -5620,7 +5764,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:50 GMT + - Fri, 27 Oct 2023 07:49:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5630,7 +5774,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7efc9577-913b-4828-9056-a535f5dd16fb + - d00475dd-9a2e-4c90-8962-7a0cc42e7ca1 status: 200 OK code: 200 duration: "" @@ -5639,9 +5783,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics method: GET response: body: '{"private_nics":[]}' @@ -5653,9 +5797,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:50 GMT + - Fri, 27 Oct 2023 07:49:09 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -5666,7 +5810,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98760db6-faf3-48ea-9aa6-94ebea349ee3 + - e47daf78-0783-4934-b2d0-d1df6fffd6c6 X-Total-Count: - "0" status: 200 OK @@ -5677,27 +5821,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2805" + - "2806" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:50 GMT + - Fri, 27 Oct 2023 07:49:09 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5707,7 +5851,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c50a1619-0f6c-417c-ba01-da39f8fab2da + - 4dadb01f-3280-4301-b7e7-41bfc97c4c84 status: 200 OK code: 200 duration: "" @@ -5716,21 +5860,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6144b80b-8a12-4993-aa65-073e23fd774c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/040bfff2-f699-4d80-a039-76b58a209bac method: GET response: - body: '{"created_at":"2023-10-20T13:48:31.136221Z","dhcp_enabled":true,"id":"6144b80b-8a12-4993-aa65-073e23fd774c","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T13:48:31.136221Z","id":"68d333ba-17fb-442e-bada-c92078d27a6d","subnet":"172.16.80.0/22","updated_at":"2023-10-20T13:48:31.136221Z"},{"created_at":"2023-10-20T13:48:31.136221Z","id":"70ec41bb-524c-48f3-b031-5d9b088ba7bd","subnet":"fd5f:519c:6d46:d64d::/64","updated_at":"2023-10-20T13:48:31.136221Z"}],"tags":[],"updated_at":"2023-10-20T13:48:31.136221Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2023-10-27T07:48:46.207442Z","dhcp_enabled":true,"id":"040bfff2-f699-4d80-a039-76b58a209bac","name":"private_network_instance_02","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:48:46.207442Z","id":"785affe7-5a45-4707-9985-6f7a258fc428","subnet":"172.16.60.0/22","updated_at":"2023-10-27T07:48:46.207442Z"},{"created_at":"2023-10-27T07:48:46.207442Z","id":"6429a1b4-3860-4dc6-ada2-f58cc135077c","subnet":"fd46:78ab:30b8:f991::/64","updated_at":"2023-10-27T07:48:46.207442Z"}],"tags":[],"updated_at":"2023-10-27T07:48:46.207442Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "725" + - "728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:51 GMT + - Fri, 27 Oct 2023 07:49:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5740,7 +5884,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad73ea5e-99d3-49ca-b085-4f936dfc8252 + - 7a0f4768-05a1-47bc-aad2-f5f76e393238 status: 200 OK code: 200 duration: "" @@ -5749,21 +5893,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/fe18faa7-6634-4132-b109-07403444845f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/161831c6-4081-4f6b-940c-6f059525f368 method: GET response: - body: '{"created_at":"2023-10-20T13:49:25.601184Z","dhcp_enabled":true,"id":"fe18faa7-6634-4132-b109-07403444845f","name":"private_network_instance_02","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T13:49:25.601184Z","id":"2f505869-a87d-4ef1-9c50-26a0bf30354e","subnet":"172.16.136.0/22","updated_at":"2023-10-20T13:49:25.601184Z"},{"created_at":"2023-10-20T13:49:25.601184Z","id":"f5e76938-9011-4fbc-8ebf-6828c040f65f","subnet":"fd5f:519c:6d46:cb90::/64","updated_at":"2023-10-20T13:49:25.601184Z"}],"tags":[],"updated_at":"2023-10-20T13:49:25.601184Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2023-10-27T07:47:49.166464Z","dhcp_enabled":true,"id":"161831c6-4081-4f6b-940c-6f059525f368","name":"private_network_instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:47:49.166464Z","id":"bd0e7733-5c20-45d4-8ddc-a28aea069d30","subnet":"172.16.68.0/22","updated_at":"2023-10-27T07:47:49.166464Z"},{"created_at":"2023-10-27T07:47:49.166464Z","id":"eb3af6ea-438f-4108-befb-90b1eb8a0ab7","subnet":"fd46:78ab:30b8:4672::/64","updated_at":"2023-10-27T07:47:49.166464Z"}],"tags":[],"updated_at":"2023-10-27T07:47:49.166464Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "729" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:51 GMT + - Fri, 27 Oct 2023 07:49:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5773,7 +5917,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 686f500c-d7d4-4044-b41a-5734fb505bc4 + - 80430b76-779a-4a20-84ef-d8f651ef8037 status: 200 OK code: 200 duration: "" @@ -5782,27 +5926,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2805" + - "2806" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:51 GMT + - Fri, 27 Oct 2023 07:49:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5812,7 +5956,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34e5f28b-4d8a-4f6b-a59c-8ef0aab5f55a + - 386bc7b4-1883-4e6a-abe9-8cd80603cc81 status: 200 OK code: 200 duration: "" @@ -5821,9 +5965,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/user_data method: GET response: body: '{"user_data":[]}' @@ -5835,7 +5979,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:51 GMT + - Fri, 27 Oct 2023 07:49:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5845,7 +5989,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7541df0-d15d-456a-a10f-39f982fc3ab8 + - a68733a0-fa68-4719-a63a-95af4e9e1561 status: 200 OK code: 200 duration: "" @@ -5854,9 +5998,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/private_nics method: GET response: body: '{"private_nics":[]}' @@ -5868,9 +6012,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:51 GMT + - Fri, 27 Oct 2023 07:49:10 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -5881,7 +6025,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 049fdbc3-e887-413c-9f8d-ded1132f6d11 + - d4a32363-645f-423f-935a-c44024c52ec9 X-Total-Count: - "0" status: 200 OK @@ -5892,27 +6036,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:48:45.574146+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:48:05.939250+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2805" + - "2806" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:52 GMT + - Fri, 27 Oct 2023 07:49:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5922,7 +6066,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b86ec615-3111-4240-8699-50729b692b62 + - 2b867e8b-5d81-48f5-abc9-faa18a270e16 status: 200 OK code: 200 duration: "" @@ -5933,12 +6077,12 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/action method: POST response: - body: '{"task":{"description":"server_poweroff","href_from":"/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409/action","href_result":"/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409","id":"fe4540c2-9327-4e24-9a19-cd919053ee23","started_at":"2023-10-20T13:49:52.516512+00:00","status":"pending","terminated_at":null}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f/action","href_result":"/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","id":"814b489d-5067-4222-8f54-1dbcc9162e55","started_at":"2023-10-27T07:49:11.562665+00:00","status":"pending","terminated_at":null}}' headers: Content-Length: - "317" @@ -5947,9 +6091,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:52 GMT + - Fri, 27 Oct 2023 07:49:11 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fe4540c2-9327-4e24-9a19-cd919053ee23 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/814b489d-5067-4222-8f54-1dbcc9162e55 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5959,7 +6103,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04dc89f8-74a4-4c22-9061-12843604b4db + - 43a60f82-3319-4c51-8c01-fb4931cff939 status: 202 Accepted code: 202 duration: "" @@ -5968,19 +6112,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/fe18faa7-6634-4132-b109-07403444845f - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f + method: GET response: - body: "" + body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON + scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:49:11.215474+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "2774" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:52 GMT + - Fri, 27 Oct 2023 07:49:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -5990,18 +6142,18 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d48820c-a437-4059-8358-07cf7cbf72c2 - status: 204 No Content - code: 204 + - af854d25-b096-487e-9906-9852010022c5 + status: 200 OK + code: 200 duration: "" - request: body: "" form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6144b80b-8a12-4993-aa65-073e23fd774c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/161831c6-4081-4f6b-940c-6f059525f368 method: DELETE response: body: "" @@ -6011,7 +6163,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:52 GMT + - Fri, 27 Oct 2023 07:49:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6021,7 +6173,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3379eeea-f05c-42c4-834d-8676819d4587 + - 4fb9480b-60df-4988-abc2-33ae062a0f96 status: 204 No Content code: 204 duration: "" @@ -6030,66 +6182,19 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 - method: GET + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/040bfff2-f699-4d80-a039-76b58a209bac + method: DELETE response: - body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON - scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:49:52.188763+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2773" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 20 Oct 2023 13:49:52 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 958db146-5d3c-49e3-a32b-a99a97167700 - status: 200 OK - code: 200 - duration: "" -- request: body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 - method: GET - response: - body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON - scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:49:52.188763+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: - Content-Length: - - "2773" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:49:58 GMT + - Fri, 27 Oct 2023 07:49:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6099,36 +6204,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1b30903-d7f2-4aea-9ced-940a103fccd2 - status: 200 OK - code: 200 + - 94899024-aca4-46a1-845e-df5de607ff0a + status: 204 No Content + code: 204 duration: "" - request: body: "" form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:49:52.188763+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:49:11.215474+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2773" + - "2774" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:50:03 GMT + - Fri, 27 Oct 2023 07:49:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6138,7 +6243,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c05d68dc-73b1-424c-9ca1-0be12fa06d42 + - c00a5793-2b5c-416f-a678-65151922e0ea status: 200 OK code: 200 duration: "" @@ -6147,27 +6252,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:49:52.188763+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:49:11.215474+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2773" + - "2774" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:50:09 GMT + - Fri, 27 Oct 2023 07:49:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6177,7 +6282,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - add4589e-0316-43da-8c9f-feb30c39bb99 + - 1c014813-f779-40ab-a6c5-60e9c7acf7c8 status: 200 OK code: 200 duration: "" @@ -6186,27 +6291,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:49:52.188763+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.22.9","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"301","node_id":"22","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:49:11.215474+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.69.8.43","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2773" + - "2774" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:50:14 GMT + - Fri, 27 Oct 2023 07:49:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6216,7 +6321,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf75da52-8aef-41be-b3b3-eb7019dab7e8 + - 5dd56592-1d03-42b9-b4e2-6ca5fcf95273 status: 200 OK code: 200 duration: "" @@ -6225,18 +6330,18 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:50:14.737218+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:49:31.664670+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2654" @@ -6245,7 +6350,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:50:19 GMT + - Fri, 27 Oct 2023 07:49:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6255,7 +6360,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e51594dd-7955-4de4-b74b-0bb7c50e418c + - 5db7e4db-cdc4-4149-b4a1-62dd5d93de61 status: 200 OK code: 200 duration: "" @@ -6264,18 +6369,18 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T13:48:32.530862+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-peaceful-hamilton","id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:47:50.306320+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-relaxed-aryabhata","id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:af:a3","maintenances":[],"modification_date":"2023-10-20T13:50:14.737218+00:00","name":"tf-srv-peaceful-hamilton","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T13:48:32.530862+00:00","export_uri":null,"id":"30bde23a-b54c-4434-945a-8622afd3933a","modification_date":"2023-10-20T13:48:32.530862+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","name":"tf-srv-peaceful-hamilton"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:b8:fd","maintenances":[],"modification_date":"2023-10-27T07:49:31.664670+00:00","name":"tf-srv-relaxed-aryabhata","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:47:50.306320+00:00","export_uri":null,"id":"92478d70-56fe-43a8-aff7-17d96fbbfbda","modification_date":"2023-10-27T07:47:50.306320+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","name":"tf-srv-relaxed-aryabhata"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2654" @@ -6284,7 +6389,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:50:19 GMT + - Fri, 27 Oct 2023 07:49:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6294,7 +6399,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2780e61-cb4d-4718-98bb-495a58ea01ad + - 2a34e416-e0fa-474d-8a86-dd43c14849b7 status: 200 OK code: 200 duration: "" @@ -6303,9 +6408,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: DELETE response: body: "" @@ -6313,7 +6418,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 20 Oct 2023 13:50:19 GMT + - Fri, 27 Oct 2023 07:49:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6323,7 +6428,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c0adbab-79f8-4206-81a6-c2ec06917941 + - a4d4faec-ba5b-4186-8a64-6be0456a8e41 status: 204 No Content code: 204 duration: "" @@ -6332,12 +6437,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","type":"not_found"}' headers: Content-Length: - "143" @@ -6346,7 +6451,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:50:20 GMT + - Fri, 27 Oct 2023 07:49:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6356,7 +6461,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7eddaa18-3f6a-4d4e-91f2-518a6808de76 + - 350d61af-21ab-4fc3-a39f-df6ad218f8b6 status: 404 Not Found code: 404 duration: "" @@ -6365,9 +6470,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/30bde23a-b54c-4434-945a-8622afd3933a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/92478d70-56fe-43a8-aff7-17d96fbbfbda method: DELETE response: body: "" @@ -6375,7 +6480,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 20 Oct 2023 13:50:20 GMT + - Fri, 27 Oct 2023 07:49:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6385,7 +6490,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0511c6e5-d3eb-4285-ac7f-91f6da838720 + - 961e64be-bd1e-4f0f-99af-99ce6a709e83 status: 204 No Content code: 204 duration: "" @@ -6394,12 +6499,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3811c0-d59b-4d1e-ac35-6595d803b409 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a5dd70f-90a6-4a78-9d6c-1f7039effa0f method: GET response: - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4b3811c0-d59b-4d1e-ac35-6595d803b409","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6a5dd70f-90a6-4a78-9d6c-1f7039effa0f","type":"not_found"}' headers: Content-Length: - "143" @@ -6408,7 +6513,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 13:50:20 GMT + - Fri, 27 Oct 2023 07:49:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -6418,7 +6523,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35a63b77-851f-4491-a547-4587f87b9ad7 + - ad04cc5f-6783-4675-b4e0-59f4ed225121 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/lblb-with-private-networks-on-dhcp-config.cassette.yaml b/scaleway/testdata/lblb-with-private-networks-on-dhcp-config.cassette.yaml index 9a3939a50e..ad18551f12 100644 --- a/scaleway/testdata/lblb-with-private-networks-on-dhcp-config.cassette.yaml +++ b/scaleway/testdata/lblb-with-private-networks-on-dhcp-config.cassette.yaml @@ -2,18 +2,18 @@ version: 1 interactions: - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"10.0.0.0/24","address":null,"pool_low":null,"pool_high":null,"enable_dynamic":null,"valid_lifetime":null,"renew_timer":null,"rebind_timer":null,"push_default_route":null,"push_dns_server":null,"dns_servers_override":null,"dns_search":null,"dns_local_name":null}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"10.0.0.0/24","address":null,"pool_low":null,"pool_high":null,"enable_dynamic":null,"valid_lifetime":null,"renew_timer":null,"rebind_timer":null,"push_default_route":null,"push_dns_server":null,"dns_servers_override":null,"dns_search":null,"dns_local_name":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps method: POST response: - body: '{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.307165Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"77bc134a-7df0-4cd8-beae-9bb95127fbff","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.307165Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"address":"10.0.0.1","created_at":"2023-10-27T07:49:57.272395Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"08a8311b-adb1-49b3-96ff-c011ee058db5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T07:49:57.272395Z","valid_lifetime":"3600s","zone":"fr-par-1"}' headers: Content-Length: - "574" @@ -22,7 +22,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:26 GMT + - Fri, 27 Oct 2023 07:49:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,32 +32,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 162c4b7d-f5be-4d7e-96c9-a9663b4edc2d + - 391d88a2-80db-49f0-b65f-93e8b6845f22 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: - body: '{"id":"f8576741-b282-4830-9813-a6b028e3f0ca","ip_address":"51.159.11.48","lb_id":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-48.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"534c546e-f2a8-44f2-8b89-86559c0307ea","ip_address":"51.158.58.116","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-58-116.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "283" + - "285" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:26 GMT + - Fri, 27 Oct 2023 07:49:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -67,7 +67,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56bcd3f3-5e5d-41b6-8e76-966a0e6807ad + - e9c85b02-ee70-4ce7-85bc-8a582b830e44 status: 200 OK code: 200 duration: "" @@ -76,12 +76,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/77bc134a-7df0-4cd8-beae-9bb95127fbff + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/08a8311b-adb1-49b3-96ff-c011ee058db5 method: GET response: - body: '{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.307165Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"77bc134a-7df0-4cd8-beae-9bb95127fbff","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.307165Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"address":"10.0.0.1","created_at":"2023-10-27T07:49:57.272395Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"08a8311b-adb1-49b3-96ff-c011ee058db5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T07:49:57.272395Z","valid_lifetime":"3600s","zone":"fr-par-1"}' headers: Content-Length: - "574" @@ -90,7 +90,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:26 GMT + - Fri, 27 Oct 2023 07:49:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,7 +100,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 334b6cb2-0caf-4382-bb75-85b0f2a1df5a + - f0f90802-b429-4a2d-9c3d-320256e52f72 status: 200 OK code: 200 duration: "" @@ -109,21 +109,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/f8576741-b282-4830-9813-a6b028e3f0ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/534c546e-f2a8-44f2-8b89-86559c0307ea method: GET response: - body: '{"id":"f8576741-b282-4830-9813-a6b028e3f0ca","ip_address":"51.159.11.48","lb_id":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-48.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"534c546e-f2a8-44f2-8b89-86559c0307ea","ip_address":"51.158.58.116","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-58-116.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "283" + - "285" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:26 GMT + - Fri, 27 Oct 2023 07:49:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,23 +133,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae82d966-3275-4764-80f2-77108144efce + - df9c7da1-f2cc-4fe5-b19f-07e1fc0bc6b5 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":null}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips method: POST response: - body: '{"address":"51.15.139.125","created_at":"2023-10-20T14:18:26.967221Z","gateway_id":null,"id":"f5ad4bfe-5f76-48e3-bfc9-fe61c59d6b56","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"125-139-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.967221Z","zone":"fr-par-1"}' + body: '{"address":"51.15.203.117","created_at":"2023-10-27T07:49:57.850232Z","gateway_id":null,"id":"08e1a5d6-e11f-445d-896f-f9f5884517f7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"117-203-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T07:49:57.850232Z","zone":"fr-par-1"}' headers: Content-Length: - "367" @@ -158,7 +158,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:26 GMT + - Fri, 27 Oct 2023 07:49:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -168,7 +168,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 901fd9fe-fb35-4ed0-a240-662d1f455b41 + - aaa41443-6b30-4c67-a1c5-31db17331e1f status: 200 OK code: 200 duration: "" @@ -177,12 +177,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/f5ad4bfe-5f76-48e3-bfc9-fe61c59d6b56 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/08e1a5d6-e11f-445d-896f-f9f5884517f7 method: GET response: - body: '{"address":"51.15.139.125","created_at":"2023-10-20T14:18:26.967221Z","gateway_id":null,"id":"f5ad4bfe-5f76-48e3-bfc9-fe61c59d6b56","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"125-139-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.967221Z","zone":"fr-par-1"}' + body: '{"address":"51.15.203.117","created_at":"2023-10-27T07:49:57.850232Z","gateway_id":null,"id":"08e1a5d6-e11f-445d-896f-f9f5884517f7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"117-203-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T07:49:57.850232Z","zone":"fr-par-1"}' headers: Content-Length: - "367" @@ -191,7 +191,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:27 GMT + - Fri, 27 Oct 2023 07:49:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -201,32 +201,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae28f46f-2fae-4b9e-8909-4016b10c755e + - d772ce3f-0ab5-4c1a-9fa3-139019d97119 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf-test-public-gw","tags":null,"type":"VPC-GW-S","upstream_dns_servers":null,"ip_id":"f5ad4bfe-5f76-48e3-bfc9-fe61c59d6b56","enable_smtp":false,"enable_bastion":false,"bastion_port":null}' + body: '{"name":"private network with a DHCP config","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null,"subnets":null,"vpc_id":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.100301Z","gateway_networks":[],"id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","ip":{"address":"51.15.139.125","created_at":"2023-10-20T14:18:26.967221Z","gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"f5ad4bfe-5f76-48e3-bfc9-fe61c59d6b56","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"125-139-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.967221Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-test-public-gw","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:27.100301Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T07:49:57.265805Z","dhcp_enabled":true,"id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","name":"private + network with a DHCP config","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:49:57.265805Z","id":"4649bb05-cf93-42ab-8e55-e04b8638f73c","subnet":"172.16.68.0/22","updated_at":"2023-10-27T07:49:57.265805Z"},{"created_at":"2023-10-27T07:49:57.265805Z","id":"40176091-f218-4c1c-af64-e34e2fe4cae1","subnet":"fd46:78ab:30b8:4bb6::/64","updated_at":"2023-10-27T07:49:57.265805Z"}],"tags":[],"updated_at":"2023-10-27T07:49:57.265805Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "980" + - "735" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:27 GMT + - Fri, 27 Oct 2023 07:49:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -236,7 +237,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2fca68c7-c8d8-469e-90e9-a62ecf784375 + - 52ae99c4-4630-4df9-99d1-c88c02886051 status: 200 OK code: 200 duration: "" @@ -245,21 +246,22 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6258f488-3864-4a3b-b3c2-9d9840ed4a45 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.100301Z","gateway_networks":[],"id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","ip":{"address":"51.15.139.125","created_at":"2023-10-20T14:18:26.967221Z","gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"f5ad4bfe-5f76-48e3-bfc9-fe61c59d6b56","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"125-139-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.967221Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-test-public-gw","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:27.142518Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T07:49:57.265805Z","dhcp_enabled":true,"id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","name":"private + network with a DHCP config","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:49:57.265805Z","id":"4649bb05-cf93-42ab-8e55-e04b8638f73c","subnet":"172.16.68.0/22","updated_at":"2023-10-27T07:49:57.265805Z"},{"created_at":"2023-10-27T07:49:57.265805Z","id":"40176091-f218-4c1c-af64-e34e2fe4cae1","subnet":"fd46:78ab:30b8:4bb6::/64","updated_at":"2023-10-27T07:49:57.265805Z"}],"tags":[],"updated_at":"2023-10-27T07:49:57.265805Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "983" + - "735" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:27 GMT + - Fri, 27 Oct 2023 07:49:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -269,33 +271,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69a9ed96-f7a8-4def-b25f-401a1083f1da + - cb82fceb-efed-4476-bf0d-994bf3020add status: 200 OK code: 200 duration: "" - request: - body: '{"name":"private network with a DHCP config","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":null,"subnets":null,"vpc_id":null}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"tf-test-public-gw","tags":null,"type":"VPC-GW-S","upstream_dns_servers":null,"ip_id":"08e1a5d6-e11f-445d-896f-f9f5884517f7","enable_smtp":false,"enable_bastion":false,"bastion_port":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways method: POST response: - body: '{"created_at":"2023-10-20T14:18:26.405234Z","dhcp_enabled":true,"id":"487c2354-24bb-4b17-bf88-0d918610cea9","name":"private - network with a DHCP config","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T14:18:26.405234Z","id":"6204fe9b-7942-4693-96e7-973d31fd34e7","subnet":"172.16.136.0/22","updated_at":"2023-10-20T14:18:26.405234Z"},{"created_at":"2023-10-20T14:18:26.405234Z","id":"f3d6c0a6-b866-4e96-8981-01110c629b0e","subnet":"fd5f:519c:6d46:9931::/64","updated_at":"2023-10-20T14:18:26.405234Z"}],"tags":[],"updated_at":"2023-10-20T14:18:26.405234Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T07:49:58.005592Z","gateway_networks":[],"id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","ip":{"address":"51.15.203.117","created_at":"2023-10-27T07:49:57.850232Z","gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"08e1a5d6-e11f-445d-896f-f9f5884517f7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"117-203-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T07:49:57.850232Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-test-public-gw","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T07:49:58.005592Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' headers: Content-Length: - - "736" + - "980" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:27 GMT + - Fri, 27 Oct 2023 07:49:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -305,7 +306,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d679555-3a82-4093-9b27-dc49c5c30559 + - 465c19b4-f8e0-4715-b0f8-e4b827704ec6 status: 200 OK code: 200 duration: "" @@ -314,22 +315,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/487c2354-24bb-4b17-bf88-0d918610cea9 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/11059644-d3c3-4d95-bdc3-4b41c4e2b52d method: GET response: - body: '{"created_at":"2023-10-20T14:18:26.405234Z","dhcp_enabled":true,"id":"487c2354-24bb-4b17-bf88-0d918610cea9","name":"private - network with a DHCP config","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T14:18:26.405234Z","id":"6204fe9b-7942-4693-96e7-973d31fd34e7","subnet":"172.16.136.0/22","updated_at":"2023-10-20T14:18:26.405234Z"},{"created_at":"2023-10-20T14:18:26.405234Z","id":"f3d6c0a6-b866-4e96-8981-01110c629b0e","subnet":"fd5f:519c:6d46:9931::/64","updated_at":"2023-10-20T14:18:26.405234Z"}],"tags":[],"updated_at":"2023-10-20T14:18:26.405234Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T07:49:58.005592Z","gateway_networks":[],"id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","ip":{"address":"51.15.203.117","created_at":"2023-10-27T07:49:57.850232Z","gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"08e1a5d6-e11f-445d-896f-f9f5884517f7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"117-203-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T07:49:57.850232Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-test-public-gw","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T07:49:58.005592Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' headers: Content-Length: - - "736" + - "980" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:27 GMT + - Fri, 27 Oct 2023 07:49:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -339,7 +339,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 601d35cb-1542-4bae-817e-68171ee13607 + - a3990e6f-49c9-4015-9978-25fabf0b062d status: 200 OK code: 200 duration: "" @@ -348,7 +348,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=debian_bullseye&order_by=created_at_asc&type=instance_local&zone=fr-par-1 method: GET @@ -362,7 +362,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:27 GMT + - Fri, 27 Oct 2023 07:49:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -372,7 +372,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b80a6e44-266e-4dd1-8677-f04cb5dcf90d + - 843a77bc-224b-42d2-b367-f59d9e9cfd4a status: 200 OK code: 200 duration: "" @@ -381,7 +381,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET @@ -395,7 +395,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:27 GMT + - Fri, 27 Oct 2023 07:49:58 GMT Link: - ; rel="next",; rel="last" @@ -408,7 +408,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e67b30d8-ff4e-450e-ac20-e5723da0125e + - 4c1dc1a1-8f51-4946-bd3b-9cb9c32527b3 X-Total-Count: - "56" status: 200 OK @@ -419,7 +419,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET @@ -433,7 +433,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:27 GMT + - Fri, 27 Oct 2023 07:49:58 GMT Link: - ; rel="first",; rel="previous",; rel="last" @@ -446,32 +446,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 738101e4-abb4-423c-b7c4-addf375288c4 + - 3228dd1b-9aae-4cc6-8dc5-f7538c6bd716 X-Total-Count: - "56" status: 200 OK code: 200 duration: "" - request: - body: '{"name":"Scaleway Terraform Provider","dynamic_ip_required":false,"routed_ip_enabled":false,"commercial_type":"DEV1-S","image":"92e694e8-5f29-420f-b48d-c3cb88de283d","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"Scaleway Terraform Provider","dynamic_ip_required":false,"routed_ip_enabled":false,"commercial_type":"DEV1-S","image":"92e694e8-5f29-420f-b48d-c3cb88de283d","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.142624+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:49:58.404684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:b1:73","maintenances":[],"modification_date":"2023-10-20T14:18:28.142624+00:00","name":"Scaleway - Terraform Provider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.142624+00:00","export_uri":null,"id":"b60cee5c-b097-4855-a3ce-407f0bca70cc","modification_date":"2023-10-20T14:18:28.142624+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:b9:0f","maintenances":[],"modification_date":"2023-10-27T07:49:58.404684+00:00","name":"Scaleway + Terraform Provider","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:49:58.404684+00:00","export_uri":null,"id":"1d12bd43-e3da-44cc-b352-4445e6ca2172","modification_date":"2023-10-27T07:49:58.404684+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","name":"Scaleway Terraform Provider"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: @@ -481,9 +481,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:28 GMT + - Fri, 27 Oct 2023 07:49:58 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -493,7 +493,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c51cb1d-6741-4a74-b515-e455072348e3 + - 3494457d-f074-42a9-821d-20d5c88751dd status: 201 Created code: 201 duration: "" @@ -502,19 +502,19 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8 method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.142624+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:49:58.404684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:b1:73","maintenances":[],"modification_date":"2023-10-20T14:18:28.142624+00:00","name":"Scaleway - Terraform Provider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.142624+00:00","export_uri":null,"id":"b60cee5c-b097-4855-a3ce-407f0bca70cc","modification_date":"2023-10-20T14:18:28.142624+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:b9:0f","maintenances":[],"modification_date":"2023-10-27T07:49:58.404684+00:00","name":"Scaleway + Terraform Provider","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:49:58.404684+00:00","export_uri":null,"id":"1d12bd43-e3da-44cc-b352-4445e6ca2172","modification_date":"2023-10-27T07:49:58.404684+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","name":"Scaleway Terraform Provider"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: @@ -524,7 +524,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:28 GMT + - Fri, 27 Oct 2023 07:49:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -534,7 +534,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5a10e09-25aa-4eca-a8b5-a9eb5d09582f + - 866bc21a-b7eb-4900-b3c1-fe455465511d status: 200 OK code: 200 duration: "" @@ -543,19 +543,19 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8 method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.142624+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:49:58.404684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:b1:73","maintenances":[],"modification_date":"2023-10-20T14:18:28.142624+00:00","name":"Scaleway - Terraform Provider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.142624+00:00","export_uri":null,"id":"b60cee5c-b097-4855-a3ce-407f0bca70cc","modification_date":"2023-10-20T14:18:28.142624+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:b9:0f","maintenances":[],"modification_date":"2023-10-27T07:49:58.404684+00:00","name":"Scaleway + Terraform Provider","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:49:58.404684+00:00","export_uri":null,"id":"1d12bd43-e3da-44cc-b352-4445e6ca2172","modification_date":"2023-10-27T07:49:58.404684+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","name":"Scaleway Terraform Provider"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: @@ -565,7 +565,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:29 GMT + - Fri, 27 Oct 2023 07:49:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -575,7 +575,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f98a5958-09db-4ceb-b7c9-6d806b85d5c3 + - 2b1f6665-8d84-4c9b-adce-8cbfc281e816 status: 200 OK code: 200 duration: "" @@ -586,12 +586,12 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8/action method: POST response: - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7/action","href_result":"/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7","id":"c492a573-1ef5-4cf4-9dfa-9e5384c98619","started_at":"2023-10-20T14:18:29.717256+00:00","status":"pending","terminated_at":null}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8/action","href_result":"/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8","id":"a2445964-d09e-43ad-8712-9faeb29cae6c","started_at":"2023-10-27T07:49:59.997084+00:00","status":"pending","terminated_at":null}}' headers: Content-Length: - "322" @@ -600,9 +600,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:29 GMT + - Fri, 27 Oct 2023 07:50:00 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c492a573-1ef5-4cf4-9dfa-9e5384c98619 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a2445964-d09e-43ad-8712-9faeb29cae6c Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -612,7 +612,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de6f6f3a-8f41-408d-a5b3-eefc3d42cd37 + - dff0c2b8-c83e-4f0a-b129-3a13d5970527 status: 202 Accepted code: 202 duration: "" @@ -621,19 +621,19 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.142624+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:49:58.404684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:b1:73","maintenances":[],"modification_date":"2023-10-20T14:18:29.154477+00:00","name":"Scaleway - Terraform Provider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.142624+00:00","export_uri":null,"id":"b60cee5c-b097-4855-a3ce-407f0bca70cc","modification_date":"2023-10-20T14:18:28.142624+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:b9:0f","maintenances":[],"modification_date":"2023-10-27T07:49:59.165453+00:00","name":"Scaleway + Terraform Provider","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:49:58.404684+00:00","export_uri":null,"id":"1d12bd43-e3da-44cc-b352-4445e6ca2172","modification_date":"2023-10-27T07:49:58.404684+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","name":"Scaleway Terraform Provider"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: @@ -643,7 +643,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:29 GMT + - Fri, 27 Oct 2023 07:50:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -653,7 +653,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc862919-df54-4613-86ff-79251aa57c6b + - d67c335c-1fba-4e9d-94a7-91a93b986193 status: 200 OK code: 200 duration: "" @@ -662,12 +662,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/11059644-d3c3-4d95-bdc3-4b41c4e2b52d method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.100301Z","gateway_networks":[],"id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","ip":{"address":"51.15.139.125","created_at":"2023-10-20T14:18:26.967221Z","gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"f5ad4bfe-5f76-48e3-bfc9-fe61c59d6b56","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"125-139-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.967221Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-test-public-gw","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:27.943282Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T07:49:58.005592Z","gateway_networks":[],"id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","ip":{"address":"51.15.203.117","created_at":"2023-10-27T07:49:57.850232Z","gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"08e1a5d6-e11f-445d-896f-f9f5884517f7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"117-203-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T07:49:57.850232Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-test-public-gw","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T07:49:58.579965Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "980" @@ -676,7 +676,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:32 GMT + - Fri, 27 Oct 2023 07:50:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -686,7 +686,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60d26a47-22b7-4436-9a97-da8e65c964e2 + - c5956f30-fb0f-4fc8-9d32-01821c782a3d status: 200 OK code: 200 duration: "" @@ -695,12 +695,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/11059644-d3c3-4d95-bdc3-4b41c4e2b52d method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.100301Z","gateway_networks":[],"id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","ip":{"address":"51.15.139.125","created_at":"2023-10-20T14:18:26.967221Z","gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"f5ad4bfe-5f76-48e3-bfc9-fe61c59d6b56","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"125-139-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.967221Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-test-public-gw","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:27.943282Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T07:49:58.005592Z","gateway_networks":[],"id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","ip":{"address":"51.15.203.117","created_at":"2023-10-27T07:49:57.850232Z","gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"08e1a5d6-e11f-445d-896f-f9f5884517f7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"117-203-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T07:49:57.850232Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-test-public-gw","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T07:49:58.579965Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "980" @@ -709,7 +709,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:32 GMT + - Fri, 27 Oct 2023 07:50:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -719,7 +719,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bce62539-106e-44e5-9d69-80729cb4e347 + - eb8c8e1b-41d4-438e-b603-3bafb2fb6666 status: 200 OK code: 200 duration: "" @@ -728,12 +728,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/11059644-d3c3-4d95-bdc3-4b41c4e2b52d method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.100301Z","gateway_networks":[],"id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","ip":{"address":"51.15.139.125","created_at":"2023-10-20T14:18:26.967221Z","gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"f5ad4bfe-5f76-48e3-bfc9-fe61c59d6b56","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"125-139-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.967221Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-test-public-gw","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:27.943282Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T07:49:58.005592Z","gateway_networks":[],"id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","ip":{"address":"51.15.203.117","created_at":"2023-10-27T07:49:57.850232Z","gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"08e1a5d6-e11f-445d-896f-f9f5884517f7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"117-203-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T07:49:57.850232Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-test-public-gw","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T07:49:58.579965Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "980" @@ -742,7 +742,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:32 GMT + - Fri, 27 Oct 2023 07:50:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -752,32 +752,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c817b135-3ad9-4310-b1d1-e151bbb87968 + - 015bdf7c-ec5f-40a1-a0a1-1b41f8d1592a status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-lb-with-private-network-configs","description":"","ip_id":"f8576741-b282-4830-9813-a6b028e3f0ca","assign_flexible_ip":null,"tags":null,"type":"LB-S","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb-with-private-network-configs","description":"","ip_id":"534c546e-f2a8-44f2-8b89-86559c0307ea","assign_flexible_ip":null,"tags":null,"type":"LB-S","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"backend_count":0,"created_at":"2023-10-20T14:18:32.564370540Z","description":"","frontend_count":0,"id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","instances":[],"ip":[{"id":"f8576741-b282-4830-9813-a6b028e3f0ca","ip_address":"51.159.11.48","lb_id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-48.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_create","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-20T14:18:32.564370540Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-10-27T07:50:03.272666510Z","description":"","frontend_count":0,"id":"81b984cc-a939-4be6-a09d-1f2913f5844d","instances":[],"ip":[{"id":"534c546e-f2a8-44f2-8b89-86559c0307ea","ip_address":"51.158.58.116","lb_id":"81b984cc-a939-4be6-a09d-1f2913f5844d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-58-116.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_create","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-27T07:50:03.272666510Z","zone":"fr-par-1"}' headers: Content-Length: - - "911" + - "913" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:32 GMT + - Fri, 27 Oct 2023 07:50:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -787,7 +787,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4df218e-78b0-4268-a2f3-6e00f11665e0 + - d68a0130-4c1a-4302-966e-602da9980c22 status: 200 OK code: 200 duration: "" @@ -796,21 +796,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a7fc3d66-e78d-4d61-ae45-7635df20d8cd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/81b984cc-a939-4be6-a09d-1f2913f5844d method: GET response: - body: '{"backend_count":0,"created_at":"2023-10-20T14:18:32.564371Z","description":"","frontend_count":0,"id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","instances":[],"ip":[{"id":"f8576741-b282-4830-9813-a6b028e3f0ca","ip_address":"51.159.11.48","lb_id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-48.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_create","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-20T14:18:32.564371Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-10-27T07:50:03.272667Z","description":"","frontend_count":0,"id":"81b984cc-a939-4be6-a09d-1f2913f5844d","instances":[{"created_at":"2023-10-27T06:12:43.533028Z","id":"f89670ea-9a9b-4e33-a255-72d8ae66ca0a","ip_address":"","region":"fr-par","status":"unknown","updated_at":"2023-10-27T07:50:03.501563Z","zone":"fr-par-1"}],"ip":[{"id":"534c546e-f2a8-44f2-8b89-86559c0307ea","ip_address":"51.158.58.116","lb_id":"81b984cc-a939-4be6-a09d-1f2913f5844d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-58-116.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"creating","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-27T07:50:03.510893Z","zone":"fr-par-1"}' headers: Content-Length: - - "905" + - "1114" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:32 GMT + - Fri, 27 Oct 2023 07:50:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -820,7 +820,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30846eea-6737-4fa0-8049-1bc4533959fc + - dba1442d-48a1-424e-b2d8-28ce4b5aab3c status: 200 OK code: 200 duration: "" @@ -829,29 +829,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.142624+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:49:58.404684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"601","node_id":"8","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:73","maintenances":[],"modification_date":"2023-10-20T14:18:29.154477+00:00","name":"Scaleway - Terraform Provider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.70.100.15","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.142624+00:00","export_uri":null,"id":"b60cee5c-b097-4855-a3ce-407f0bca70cc","modification_date":"2023-10-20T14:18:28.142624+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"18","hypervisor_id":"1602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b9:0f","maintenances":[],"modification_date":"2023-10-27T07:49:59.165453+00:00","name":"Scaleway + Terraform Provider","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.65.46.9","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:49:58.404684+00:00","export_uri":null,"id":"1d12bd43-e3da-44cc-b352-4445e6ca2172","modification_date":"2023-10-27T07:49:58.404684+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","name":"Scaleway Terraform Provider"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2766" + - "2765" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:35 GMT + - Fri, 27 Oct 2023 07:50:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -861,23 +861,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a157491e-6672-4c39-9cf9-ec5cb6601f9f + - 36f28da8-6756-418c-8e10-7ad73b999d3f status: 200 OK code: 200 duration: "" - request: - body: '{"gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","enable_masquerade":true,"enable_dhcp":true,"dhcp_id":"77bc134a-7df0-4cd8-beae-9bb95127fbff"}' + body: '{"gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","enable_masquerade":true,"enable_dhcp":true,"dhcp_id":"08a8311b-adb1-49b3-96ff-c011ee058db5"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks method: POST response: - body: '{"address":null,"created_at":"2023-10-20T14:18:34.664182Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.307165Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"77bc134a-7df0-4cd8-beae-9bb95127fbff","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.307165Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"538d6444-553e-46f3-9635-d08306cd5512","ipam_config":null,"mac_address":null,"private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","status":"created","updated_at":"2023-10-20T14:18:34.664182Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T07:50:05.640274Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T07:49:57.272395Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"08a8311b-adb1-49b3-96ff-c011ee058db5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T07:49:57.272395Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"9d22e710-2b17-439c-bc74-0aaece0025c1","ipam_config":null,"mac_address":null,"private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","status":"created","updated_at":"2023-10-27T07:50:05.640274Z","zone":"fr-par-1"}' headers: Content-Length: - "971" @@ -886,7 +886,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:35 GMT + - Fri, 27 Oct 2023 07:50:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -896,7 +896,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b9970b2-88e9-4998-848f-7797f3cd927f + - facfd295-7fde-4379-b5cc-babe83cf2c9c status: 200 OK code: 200 duration: "" @@ -905,12 +905,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/11059644-d3c3-4d95-bdc3-4b41c4e2b52d method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.100301Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:18:34.664182Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.307165Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"77bc134a-7df0-4cd8-beae-9bb95127fbff","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.307165Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"538d6444-553e-46f3-9635-d08306cd5512","ipam_config":null,"mac_address":null,"private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","status":"created","updated_at":"2023-10-20T14:18:34.664182Z","zone":"fr-par-1"}],"id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","ip":{"address":"51.15.139.125","created_at":"2023-10-20T14:18:26.967221Z","gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"f5ad4bfe-5f76-48e3-bfc9-fe61c59d6b56","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"125-139-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.967221Z","zone":"fr-par-1"},"is_legacy":true,"name":"tf-test-public-gw","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:35.941351Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T07:49:58.005592Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T07:50:05.640274Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T07:49:57.272395Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"08a8311b-adb1-49b3-96ff-c011ee058db5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T07:49:57.272395Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"9d22e710-2b17-439c-bc74-0aaece0025c1","ipam_config":null,"mac_address":null,"private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","status":"created","updated_at":"2023-10-27T07:50:05.640274Z","zone":"fr-par-1"}],"id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","ip":{"address":"51.15.203.117","created_at":"2023-10-27T07:49:57.850232Z","gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"08e1a5d6-e11f-445d-896f-f9f5884517f7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"117-203-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T07:49:57.850232Z","zone":"fr-par-1"},"is_legacy":true,"name":"tf-test-public-gw","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T07:50:05.788713Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "1954" @@ -919,7 +919,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:36 GMT + - Fri, 27 Oct 2023 07:50:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -929,7 +929,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1f8edfa-c4ca-47cb-818a-500a36e84f4c + - 49191fd9-5d6f-4bf2-9aa6-094713c55bd4 status: 200 OK code: 200 duration: "" @@ -938,29 +938,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.142624+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:49:58.404684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"601","node_id":"8","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:73","maintenances":[],"modification_date":"2023-10-20T14:18:29.154477+00:00","name":"Scaleway - Terraform Provider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.70.100.15","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.142624+00:00","export_uri":null,"id":"b60cee5c-b097-4855-a3ce-407f0bca70cc","modification_date":"2023-10-20T14:18:28.142624+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"18","hypervisor_id":"1602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b9:0f","maintenances":[],"modification_date":"2023-10-27T07:49:59.165453+00:00","name":"Scaleway + Terraform Provider","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.65.46.9","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:49:58.404684+00:00","export_uri":null,"id":"1d12bd43-e3da-44cc-b352-4445e6ca2172","modification_date":"2023-10-27T07:49:58.404684+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","name":"Scaleway Terraform Provider"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2766" + - "2765" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:40 GMT + - Fri, 27 Oct 2023 07:50:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -970,7 +970,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b4c2de2-a4d4-4161-87c3-b7f9a51f0d95 + - c03ccb61-9cbc-4777-8930-cec0188fcae8 status: 200 OK code: 200 duration: "" @@ -979,12 +979,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/11059644-d3c3-4d95-bdc3-4b41c4e2b52d method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.100301Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:18:34.664182Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.307165Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"77bc134a-7df0-4cd8-beae-9bb95127fbff","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.307165Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"538d6444-553e-46f3-9635-d08306cd5512","ipam_config":null,"mac_address":"02:00:00:14:57:CF","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","status":"ready","updated_at":"2023-10-20T14:18:37.880612Z","zone":"fr-par-1"}],"id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","ip":{"address":"51.15.139.125","created_at":"2023-10-20T14:18:26.967221Z","gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"f5ad4bfe-5f76-48e3-bfc9-fe61c59d6b56","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"125-139-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.967221Z","zone":"fr-par-1"},"is_legacy":true,"name":"tf-test-public-gw","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:38.010140Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T07:49:58.005592Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T07:50:05.640274Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T07:49:57.272395Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"08a8311b-adb1-49b3-96ff-c011ee058db5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T07:49:57.272395Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"9d22e710-2b17-439c-bc74-0aaece0025c1","ipam_config":null,"mac_address":"02:00:00:14:73:C6","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","status":"ready","updated_at":"2023-10-27T07:50:08.215893Z","zone":"fr-par-1"}],"id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","ip":{"address":"51.15.203.117","created_at":"2023-10-27T07:49:57.850232Z","gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"08e1a5d6-e11f-445d-896f-f9f5884517f7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"117-203-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T07:49:57.850232Z","zone":"fr-par-1"},"is_legacy":true,"name":"tf-test-public-gw","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T07:50:08.312724Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "1963" @@ -993,7 +993,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:41 GMT + - Fri, 27 Oct 2023 07:50:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1003,7 +1003,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fdb73f0-17fe-4b04-9350-dae77f8f2e34 + - 72c181ec-9189-4165-b0ea-9c59a715739b status: 200 OK code: 200 duration: "" @@ -1012,12 +1012,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/538d6444-553e-46f3-9635-d08306cd5512 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/9d22e710-2b17-439c-bc74-0aaece0025c1 method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:18:34.664182Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.307165Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"77bc134a-7df0-4cd8-beae-9bb95127fbff","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.307165Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"538d6444-553e-46f3-9635-d08306cd5512","ipam_config":null,"mac_address":"02:00:00:14:57:CF","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","status":"ready","updated_at":"2023-10-20T14:18:37.880612Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T07:50:05.640274Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T07:49:57.272395Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"08a8311b-adb1-49b3-96ff-c011ee058db5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T07:49:57.272395Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"9d22e710-2b17-439c-bc74-0aaece0025c1","ipam_config":null,"mac_address":"02:00:00:14:73:C6","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","status":"ready","updated_at":"2023-10-27T07:50:08.215893Z","zone":"fr-par-1"}' headers: Content-Length: - "984" @@ -1026,7 +1026,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:41 GMT + - Fri, 27 Oct 2023 07:50:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1036,7 +1036,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4bd977d-a1f6-4421-aba6-dc9bbe53264a + - e2f3daf2-54c5-447f-831c-c0cd79ef7e46 status: 200 OK code: 200 duration: "" @@ -1045,12 +1045,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/538d6444-553e-46f3-9635-d08306cd5512 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/9d22e710-2b17-439c-bc74-0aaece0025c1 method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:18:34.664182Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.307165Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"77bc134a-7df0-4cd8-beae-9bb95127fbff","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.307165Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"538d6444-553e-46f3-9635-d08306cd5512","ipam_config":null,"mac_address":"02:00:00:14:57:CF","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","status":"ready","updated_at":"2023-10-20T14:18:37.880612Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T07:50:05.640274Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T07:49:57.272395Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"08a8311b-adb1-49b3-96ff-c011ee058db5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T07:49:57.272395Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"9d22e710-2b17-439c-bc74-0aaece0025c1","ipam_config":null,"mac_address":"02:00:00:14:73:C6","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","status":"ready","updated_at":"2023-10-27T07:50:08.215893Z","zone":"fr-par-1"}' headers: Content-Length: - "984" @@ -1059,7 +1059,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:41 GMT + - Fri, 27 Oct 2023 07:50:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1069,7 +1069,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01cec100-0a29-476f-b4fe-ec488520c330 + - f4dcbff1-148c-4c10-8f21-13ccd54d445f status: 200 OK code: 200 duration: "" @@ -1078,12 +1078,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/11059644-d3c3-4d95-bdc3-4b41c4e2b52d method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.100301Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:18:34.664182Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.307165Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"77bc134a-7df0-4cd8-beae-9bb95127fbff","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.307165Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"538d6444-553e-46f3-9635-d08306cd5512","ipam_config":null,"mac_address":"02:00:00:14:57:CF","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","status":"ready","updated_at":"2023-10-20T14:18:37.880612Z","zone":"fr-par-1"}],"id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","ip":{"address":"51.15.139.125","created_at":"2023-10-20T14:18:26.967221Z","gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"f5ad4bfe-5f76-48e3-bfc9-fe61c59d6b56","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"125-139-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.967221Z","zone":"fr-par-1"},"is_legacy":true,"name":"tf-test-public-gw","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:38.010140Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T07:49:58.005592Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T07:50:05.640274Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T07:49:57.272395Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"08a8311b-adb1-49b3-96ff-c011ee058db5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T07:49:57.272395Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"9d22e710-2b17-439c-bc74-0aaece0025c1","ipam_config":null,"mac_address":"02:00:00:14:73:C6","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","status":"ready","updated_at":"2023-10-27T07:50:08.215893Z","zone":"fr-par-1"}],"id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","ip":{"address":"51.15.203.117","created_at":"2023-10-27T07:49:57.850232Z","gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"08e1a5d6-e11f-445d-896f-f9f5884517f7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"117-203-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T07:49:57.850232Z","zone":"fr-par-1"},"is_legacy":true,"name":"tf-test-public-gw","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T07:50:08.312724Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "1963" @@ -1092,7 +1092,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:41 GMT + - Fri, 27 Oct 2023 07:50:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1102,7 +1102,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 041cf5e6-d5ef-49e2-a476-4a8e62e1a846 + - 5b8d08e0-4640-4e67-96f6-cc3398de4c6c status: 200 OK code: 200 duration: "" @@ -1111,12 +1111,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/538d6444-553e-46f3-9635-d08306cd5512 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/9d22e710-2b17-439c-bc74-0aaece0025c1 method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:18:34.664182Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.307165Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"77bc134a-7df0-4cd8-beae-9bb95127fbff","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.307165Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"538d6444-553e-46f3-9635-d08306cd5512","ipam_config":null,"mac_address":"02:00:00:14:57:CF","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","status":"ready","updated_at":"2023-10-20T14:18:37.880612Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T07:50:05.640274Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T07:49:57.272395Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"08a8311b-adb1-49b3-96ff-c011ee058db5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T07:49:57.272395Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"9d22e710-2b17-439c-bc74-0aaece0025c1","ipam_config":null,"mac_address":"02:00:00:14:73:C6","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","status":"ready","updated_at":"2023-10-27T07:50:08.215893Z","zone":"fr-par-1"}' headers: Content-Length: - "984" @@ -1125,7 +1125,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:41 GMT + - Fri, 27 Oct 2023 07:50:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1135,7 +1135,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6254f5f-f80c-4cef-8a7d-afd10d750b82 + - 4121b3ea-c3b5-48b5-9809-17562cd269e9 status: 200 OK code: 200 duration: "" @@ -1144,29 +1144,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8 method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.142624+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:49:58.404684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"601","node_id":"8","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:73","maintenances":[],"modification_date":"2023-10-20T14:18:45.082650+00:00","name":"Scaleway - Terraform Provider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.70.100.15","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.142624+00:00","export_uri":null,"id":"b60cee5c-b097-4855-a3ce-407f0bca70cc","modification_date":"2023-10-20T14:18:28.142624+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"18","hypervisor_id":"1602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b9:0f","maintenances":[],"modification_date":"2023-10-27T07:50:11.708409+00:00","name":"Scaleway + Terraform Provider","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.65.46.9","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:49:58.404684+00:00","export_uri":null,"id":"1d12bd43-e3da-44cc-b352-4445e6ca2172","modification_date":"2023-10-27T07:49:58.404684+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","name":"Scaleway Terraform Provider"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2797" + - "2796" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:45 GMT + - Fri, 27 Oct 2023 07:50:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1176,7 +1176,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64ee2057-ee51-42d7-b148-a9e2a70a013a + - 5b6c8712-a755-4ff0-a05f-efa5b6a1048c status: 200 OK code: 200 duration: "" @@ -1185,22 +1185,22 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/487c2354-24bb-4b17-bf88-0d918610cea9 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6258f488-3864-4a3b-b3c2-9d9840ed4a45 method: GET response: - body: '{"created_at":"2023-10-20T14:18:26.405234Z","id":"487c2354-24bb-4b17-bf88-0d918610cea9","name":"private - network with a DHCP config","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":["10.0.0.0/24","fd5f:519c:6d46:9931::/64"],"tags":[],"updated_at":"2023-10-20T14:18:37.498750Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T07:49:57.265805Z","dhcp_enabled":true,"id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","name":"private + network with a DHCP config","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:49:57.265805Z","id":"4649bb05-cf93-42ab-8e55-e04b8638f73c","subnet":"10.0.0.0/24","updated_at":"2023-10-27T07:50:03.948947Z"},{"created_at":"2023-10-27T07:49:57.265805Z","id":"40176091-f218-4c1c-af64-e34e2fe4cae1","subnet":"fd46:78ab:30b8:4bb6::/64","updated_at":"2023-10-27T07:50:03.961572Z"}],"tags":[],"updated_at":"2023-10-27T07:50:07.898856Z","vpc_id":"efa5b723-b070-430a-8631-f3d487bacf8b"}' headers: Content-Length: - - "374" + - "732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:45 GMT + - Fri, 27 Oct 2023 07:50:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1210,7 +1210,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed61237e-1829-491c-864b-3c5c6353b0c0 + - 16239ad1-a661-4001-be3f-69939512b2b5 status: 200 OK code: 200 duration: "" @@ -1219,29 +1219,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8 method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.142624+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:49:58.404684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"601","node_id":"8","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:73","maintenances":[],"modification_date":"2023-10-20T14:18:45.082650+00:00","name":"Scaleway - Terraform Provider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.70.100.15","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.142624+00:00","export_uri":null,"id":"b60cee5c-b097-4855-a3ce-407f0bca70cc","modification_date":"2023-10-20T14:18:28.142624+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"18","hypervisor_id":"1602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b9:0f","maintenances":[],"modification_date":"2023-10-27T07:50:11.708409+00:00","name":"Scaleway + Terraform Provider","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.65.46.9","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:49:58.404684+00:00","export_uri":null,"id":"1d12bd43-e3da-44cc-b352-4445e6ca2172","modification_date":"2023-10-27T07:49:58.404684+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","name":"Scaleway Terraform Provider"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2797" + - "2796" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:45 GMT + - Fri, 27 Oct 2023 07:50:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1251,23 +1251,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02c6d042-b61e-4255-be67-3e77947ff42e + - 91dff9e6-6155-498b-aad3-bc9738555e65 status: 200 OK code: 200 duration: "" - request: - body: '{"private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9"}' + body: '{"private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8/private_nics method: POST response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:18:45.787475+00:00","id":"d30911b2-df1e-4160-9363-3872d4594224","mac_address":"02:00:00:14:57:d0","modification_date":"2023-10-20T14:18:45.787475+00:00","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","server_id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:50:15.733547+00:00","id":"1676de75-0790-49c2-89ce-471583a6dfb1","mac_address":"02:00:00:14:73:c7","modification_date":"2023-10-27T07:50:15.733547+00:00","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","server_id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1276,7 +1276,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:46 GMT + - Fri, 27 Oct 2023 07:50:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1286,7 +1286,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a306bdee-8119-481c-aecc-fee571804404 + - 0dba6911-141b-4cf2-9098-bb55a4876b51 status: 201 Created code: 201 duration: "" @@ -1295,12 +1295,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7/private_nics/d30911b2-df1e-4160-9363-3872d4594224 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8/private_nics/1676de75-0790-49c2-89ce-471583a6dfb1 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:18:45.787475+00:00","id":"d30911b2-df1e-4160-9363-3872d4594224","mac_address":"02:00:00:14:57:d0","modification_date":"2023-10-20T14:18:45.787475+00:00","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","server_id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:50:15.733547+00:00","id":"1676de75-0790-49c2-89ce-471583a6dfb1","mac_address":"02:00:00:14:73:c7","modification_date":"2023-10-27T07:50:15.733547+00:00","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","server_id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1309,7 +1309,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:46 GMT + - Fri, 27 Oct 2023 07:50:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1319,7 +1319,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6808ca43-67c2-4969-ae89-310586ea6e8e + - b7a699f2-d999-4b7c-98ed-697a9d09c6e9 status: 200 OK code: 200 duration: "" @@ -1328,12 +1328,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7/private_nics/d30911b2-df1e-4160-9363-3872d4594224 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8/private_nics/1676de75-0790-49c2-89ce-471583a6dfb1 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:18:45.787475+00:00","id":"d30911b2-df1e-4160-9363-3872d4594224","mac_address":"02:00:00:14:57:d0","modification_date":"2023-10-20T14:18:46.789669+00:00","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","server_id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:50:15.733547+00:00","id":"1676de75-0790-49c2-89ce-471583a6dfb1","mac_address":"02:00:00:14:73:c7","modification_date":"2023-10-27T07:50:16.560034+00:00","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","server_id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1342,7 +1342,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:51 GMT + - Fri, 27 Oct 2023 07:50:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1352,7 +1352,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b012f9e-54bb-4af2-8b4e-b290a117c278 + - 2e304752-f2e4-4e4b-a9fc-dde20ab6e150 status: 200 OK code: 200 duration: "" @@ -1361,12 +1361,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7/private_nics/d30911b2-df1e-4160-9363-3872d4594224 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8/private_nics/1676de75-0790-49c2-89ce-471583a6dfb1 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:18:45.787475+00:00","id":"d30911b2-df1e-4160-9363-3872d4594224","mac_address":"02:00:00:14:57:d0","modification_date":"2023-10-20T14:18:46.789669+00:00","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","server_id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:50:15.733547+00:00","id":"1676de75-0790-49c2-89ce-471583a6dfb1","mac_address":"02:00:00:14:73:c7","modification_date":"2023-10-27T07:50:16.560034+00:00","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","server_id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1375,7 +1375,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:56 GMT + - Fri, 27 Oct 2023 07:50:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1385,7 +1385,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 350e9a17-ee3b-4de0-b1be-db1c19f5c7d7 + - f752fe73-b59b-4180-9f83-dd7d6bafe07a status: 200 OK code: 200 duration: "" @@ -1394,12 +1394,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7/private_nics/d30911b2-df1e-4160-9363-3872d4594224 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8/private_nics/1676de75-0790-49c2-89ce-471583a6dfb1 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:18:45.787475+00:00","id":"d30911b2-df1e-4160-9363-3872d4594224","mac_address":"02:00:00:14:57:d0","modification_date":"2023-10-20T14:18:46.789669+00:00","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","server_id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:50:15.733547+00:00","id":"1676de75-0790-49c2-89ce-471583a6dfb1","mac_address":"02:00:00:14:73:c7","modification_date":"2023-10-27T07:50:16.560034+00:00","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","server_id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1408,7 +1408,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:01 GMT + - Fri, 27 Oct 2023 07:50:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1418,7 +1418,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14de15ec-e671-467e-9c9d-5daf4bd60b86 + - 4b25f86a-af90-4873-a018-acfc29864e8d status: 200 OK code: 200 duration: "" @@ -1427,21 +1427,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a7fc3d66-e78d-4d61-ae45-7635df20d8cd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/81b984cc-a939-4be6-a09d-1f2913f5844d method: GET response: - body: '{"backend_count":0,"created_at":"2023-10-20T14:18:32.564371Z","description":"","frontend_count":0,"id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","instances":[{"created_at":"2023-10-20T14:12:52.137043Z","id":"a45718f6-ab56-425b-800c-bc95edaa18b0","ip_address":"","region":"fr-par","status":"ready","updated_at":"2023-10-20T14:18:38.756490Z","zone":"fr-par-1"}],"ip":[{"id":"f8576741-b282-4830-9813-a6b028e3f0ca","ip_address":"51.159.11.48","lb_id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-48.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-20T14:18:40.121254Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-10-27T07:50:03.272667Z","description":"","frontend_count":0,"id":"81b984cc-a939-4be6-a09d-1f2913f5844d","instances":[{"created_at":"2023-10-27T06:12:43.533028Z","id":"f89670ea-9a9b-4e33-a255-72d8ae66ca0a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2023-10-27T07:50:08.079727Z","zone":"fr-par-1"}],"ip":[{"id":"534c546e-f2a8-44f2-8b89-86559c0307ea","ip_address":"51.158.58.116","lb_id":"81b984cc-a939-4be6-a09d-1f2913f5844d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-58-116.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-27T07:50:09.331766Z","zone":"fr-par-1"}' headers: Content-Length: - - "1107" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:02 GMT + - Fri, 27 Oct 2023 07:50:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1451,7 +1451,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08728f2c-48a2-48d2-8b0d-620af4bd2283 + - cb726386-5857-45d9-96ec-23cd30ab5924 status: 200 OK code: 200 duration: "" @@ -1462,21 +1462,21 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a7fc3d66-e78d-4d61-ae45-7635df20d8cd/private-networks/487c2354-24bb-4b17-bf88-0d918610cea9/attach + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/81b984cc-a939-4be6-a09d-1f2913f5844d/private-networks/6258f488-3864-4a3b-b3c2-9d9840ed4a45/attach method: POST response: - body: '{"created_at":"2023-10-20T14:19:03.015447949Z","dhcp_config":{"ip_id":null},"ipam_ids":[],"lb":{"backend_count":0,"created_at":"2023-10-20T14:18:32.564371Z","description":"","frontend_count":0,"id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","instances":[{"created_at":"2023-10-20T14:12:52.137043Z","id":"a45718f6-ab56-425b-800c-bc95edaa18b0","ip_address":"","region":"fr-par","status":"ready","updated_at":"2023-10-20T14:18:38.756490Z","zone":"fr-par-1"}],"ip":[{"id":"f8576741-b282-4830-9813-a6b028e3f0ca","ip_address":"51.159.11.48","lb_id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-48.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-20T14:18:40.121254Z","zone":"fr-par-1"},"private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","status":"pending","updated_at":"2023-10-20T14:19:03.015447949Z"}' + body: '{"created_at":"2023-10-27T07:50:33.802250665Z","dhcp_config":{"ip_id":null},"ipam_ids":[],"lb":{"backend_count":0,"created_at":"2023-10-27T07:50:03.272667Z","description":"","frontend_count":0,"id":"81b984cc-a939-4be6-a09d-1f2913f5844d","instances":[{"created_at":"2023-10-27T06:12:43.533028Z","id":"f89670ea-9a9b-4e33-a255-72d8ae66ca0a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2023-10-27T07:50:08.079727Z","zone":"fr-par-1"}],"ip":[{"id":"534c546e-f2a8-44f2-8b89-86559c0307ea","ip_address":"51.158.58.116","lb_id":"81b984cc-a939-4be6-a09d-1f2913f5844d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-58-116.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-27T07:50:09.331766Z","zone":"fr-par-1"},"private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","status":"pending","updated_at":"2023-10-27T07:50:33.802250665Z"}' headers: Content-Length: - - "1334" + - "1336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:03 GMT + - Fri, 27 Oct 2023 07:50:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1486,7 +1486,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 718475b1-3da4-41a8-8bc7-973d3ae66e70 + - 64d4556b-bc3f-4e97-8200-4f3100c3e3ce status: 200 OK code: 200 duration: "" @@ -1495,21 +1495,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a7fc3d66-e78d-4d61-ae45-7635df20d8cd/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/81b984cc-a939-4be6-a09d-1f2913f5844d/private-networks?order_by=created_at_asc method: GET response: - body: '{"private_network":[{"created_at":"2023-10-20T14:19:03.015448Z","dhcp_config":{"ip_id":null},"ipam_ids":[],"lb":{"backend_count":0,"created_at":"2023-10-20T14:18:32.564371Z","description":"","frontend_count":0,"id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","instances":[],"ip":[{"id":"f8576741-b282-4830-9813-a6b028e3f0ca","ip_address":"51.159.11.48","lb_id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-48.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-20T14:18:40.121254Z","zone":"fr-par-1"},"private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","status":"pending","updated_at":"2023-10-20T14:19:03.015448Z"}],"total_count":1}' + body: '{"private_network":[{"created_at":"2023-10-27T07:50:33.802251Z","dhcp_config":{"ip_id":null},"ipam_ids":[],"lb":{"backend_count":0,"created_at":"2023-10-27T07:50:03.272667Z","description":"","frontend_count":0,"id":"81b984cc-a939-4be6-a09d-1f2913f5844d","instances":[],"ip":[{"id":"534c546e-f2a8-44f2-8b89-86559c0307ea","ip_address":"51.158.58.116","lb_id":"81b984cc-a939-4be6-a09d-1f2913f5844d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-58-116.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-27T07:50:09.331766Z","zone":"fr-par-1"},"private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","status":"pending","updated_at":"2023-10-27T07:50:33.802251Z"}],"total_count":1}' headers: Content-Length: - - "1161" + - "1163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:03 GMT + - Fri, 27 Oct 2023 07:50:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1519,7 +1519,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 092e05bc-aaa6-4c19-b82d-58ccf6a3b22e + - 9be409d1-0d30-4ec2-abe8-16d3c357034a status: 200 OK code: 200 duration: "" @@ -1528,12 +1528,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7/private_nics/d30911b2-df1e-4160-9363-3872d4594224 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8/private_nics/1676de75-0790-49c2-89ce-471583a6dfb1 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:18:45.787475+00:00","id":"d30911b2-df1e-4160-9363-3872d4594224","mac_address":"02:00:00:14:57:d0","modification_date":"2023-10-20T14:18:46.789669+00:00","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","server_id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:50:15.733547+00:00","id":"1676de75-0790-49c2-89ce-471583a6dfb1","mac_address":"02:00:00:14:73:c7","modification_date":"2023-10-27T07:50:16.560034+00:00","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","server_id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1542,7 +1542,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:06 GMT + - Fri, 27 Oct 2023 07:50:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1552,7 +1552,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08f0ad27-2dc7-4b96-9837-8929e3ee591d + - 3900a0cc-a1ba-423a-ae55-08bf25ebe1f1 status: 200 OK code: 200 duration: "" @@ -1561,12 +1561,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7/private_nics/d30911b2-df1e-4160-9363-3872d4594224 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8/private_nics/1676de75-0790-49c2-89ce-471583a6dfb1 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:18:45.787475+00:00","id":"d30911b2-df1e-4160-9363-3872d4594224","mac_address":"02:00:00:14:57:d0","modification_date":"2023-10-20T14:18:46.789669+00:00","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","server_id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:50:15.733547+00:00","id":"1676de75-0790-49c2-89ce-471583a6dfb1","mac_address":"02:00:00:14:73:c7","modification_date":"2023-10-27T07:50:16.560034+00:00","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","server_id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1575,7 +1575,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:12 GMT + - Fri, 27 Oct 2023 07:50:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1585,7 +1585,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0174be2d-b0d0-4e11-a349-fb29eb4c82b3 + - 716c5766-fc58-4342-be63-758625af9e46 status: 200 OK code: 200 duration: "" @@ -1594,12 +1594,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7/private_nics/d30911b2-df1e-4160-9363-3872d4594224 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8/private_nics/1676de75-0790-49c2-89ce-471583a6dfb1 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:18:45.787475+00:00","id":"d30911b2-df1e-4160-9363-3872d4594224","mac_address":"02:00:00:14:57:d0","modification_date":"2023-10-20T14:18:46.789669+00:00","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","server_id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:50:15.733547+00:00","id":"1676de75-0790-49c2-89ce-471583a6dfb1","mac_address":"02:00:00:14:73:c7","modification_date":"2023-10-27T07:50:16.560034+00:00","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","server_id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1608,7 +1608,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:17 GMT + - Fri, 27 Oct 2023 07:50:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1618,7 +1618,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6755bca4-1de4-4ca6-b9d4-727f6c43add6 + - 81c36720-cfc0-490d-96fa-a8e3854f93f3 status: 200 OK code: 200 duration: "" @@ -1627,12 +1627,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7/private_nics/d30911b2-df1e-4160-9363-3872d4594224 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8/private_nics/1676de75-0790-49c2-89ce-471583a6dfb1 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:18:45.787475+00:00","id":"d30911b2-df1e-4160-9363-3872d4594224","mac_address":"02:00:00:14:57:d0","modification_date":"2023-10-20T14:19:17.636021+00:00","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","server_id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:50:15.733547+00:00","id":"1676de75-0790-49c2-89ce-471583a6dfb1","mac_address":"02:00:00:14:73:c7","modification_date":"2023-10-27T07:50:46.862423+00:00","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","server_id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "378" @@ -1641,7 +1641,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:22 GMT + - Fri, 27 Oct 2023 07:50:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1651,7 +1651,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a86522e0-bf17-4360-895f-851f49e5061f + - 621c35ca-5076-466a-9e9b-b6245384ca95 status: 200 OK code: 200 duration: "" @@ -1660,12 +1660,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7/private_nics/d30911b2-df1e-4160-9363-3872d4594224 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8/private_nics/1676de75-0790-49c2-89ce-471583a6dfb1 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:18:45.787475+00:00","id":"d30911b2-df1e-4160-9363-3872d4594224","mac_address":"02:00:00:14:57:d0","modification_date":"2023-10-20T14:19:17.636021+00:00","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","server_id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:50:15.733547+00:00","id":"1676de75-0790-49c2-89ce-471583a6dfb1","mac_address":"02:00:00:14:73:c7","modification_date":"2023-10-27T07:50:46.862423+00:00","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","server_id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "378" @@ -1674,7 +1674,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:22 GMT + - Fri, 27 Oct 2023 07:50:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1684,7 +1684,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72de9c18-460d-4ba8-b6a5-7012aca98e83 + - 0b8dc666-31b3-47c5-a9ab-ba59ee97a94a status: 200 OK code: 200 duration: "" @@ -1693,29 +1693,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8 method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.142624+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:49:58.404684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"601","node_id":"8","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:73","maintenances":[],"modification_date":"2023-10-20T14:18:45.082650+00:00","name":"Scaleway - Terraform Provider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.70.100.15","private_nics":[{"creation_date":"2023-10-20T14:18:45.787475+00:00","id":"d30911b2-df1e-4160-9363-3872d4594224","mac_address":"02:00:00:14:57:d0","modification_date":"2023-10-20T14:19:17.636021+00:00","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","server_id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.142624+00:00","export_uri":null,"id":"b60cee5c-b097-4855-a3ce-407f0bca70cc","modification_date":"2023-10-20T14:18:28.142624+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"18","hypervisor_id":"1602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b9:0f","maintenances":[],"modification_date":"2023-10-27T07:50:11.708409+00:00","name":"Scaleway + Terraform Provider","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.65.46.9","private_nics":[{"creation_date":"2023-10-27T07:50:15.733547+00:00","id":"1676de75-0790-49c2-89ce-471583a6dfb1","mac_address":"02:00:00:14:73:c7","modification_date":"2023-10-27T07:50:46.862423+00:00","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","server_id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:49:58.404684+00:00","export_uri":null,"id":"1d12bd43-e3da-44cc-b352-4445e6ca2172","modification_date":"2023-10-27T07:49:58.404684+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","name":"Scaleway Terraform Provider"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3150" + - "3149" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:22 GMT + - Fri, 27 Oct 2023 07:50:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1725,7 +1725,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 866198bc-0a40-4cf8-ab48-0f6abe401540 + - 536f0494-7b2b-4d31-877d-1d28d5a7c8e1 status: 200 OK code: 200 duration: "" @@ -1734,9 +1734,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8/user_data method: GET response: body: '{"user_data":[]}' @@ -1748,7 +1748,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:22 GMT + - Fri, 27 Oct 2023 07:50:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1758,7 +1758,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e6ea21c-ade5-42bd-8032-bacedeed0554 + - d1008952-2009-4a6b-95c3-fb07da15cb54 status: 200 OK code: 200 duration: "" @@ -1767,12 +1767,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T14:18:45.787475+00:00","id":"d30911b2-df1e-4160-9363-3872d4594224","mac_address":"02:00:00:14:57:d0","modification_date":"2023-10-20T14:19:17.636021+00:00","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","server_id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T07:50:15.733547+00:00","id":"1676de75-0790-49c2-89ce-471583a6dfb1","mac_address":"02:00:00:14:73:c7","modification_date":"2023-10-27T07:50:46.862423+00:00","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","server_id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "381" @@ -1781,9 +1781,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:22 GMT + - Fri, 27 Oct 2023 07:50:52 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -1794,7 +1794,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3afb13b-3fbe-4f5a-8dba-668a0e0e1a86 + - 347cb969-eb3c-45da-b831-a7419ccc7d77 X-Total-Count: - "1" status: 200 OK @@ -1805,21 +1805,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a7fc3d66-e78d-4d61-ae45-7635df20d8cd/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/81b984cc-a939-4be6-a09d-1f2913f5844d/private-networks?order_by=created_at_asc method: GET response: - body: '{"private_network":[{"created_at":"2023-10-20T14:19:03.015448Z","dhcp_config":{"ip_id":"f1a92c22-e3cb-4d69-99d4-b915cc2287e6"},"ipam_ids":["f1a92c22-e3cb-4d69-99d4-b915cc2287e6"],"lb":{"backend_count":0,"created_at":"2023-10-20T14:18:32.564371Z","description":"","frontend_count":0,"id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","instances":[],"ip":[{"id":"f8576741-b282-4830-9813-a6b028e3f0ca","ip_address":"51.159.11.48","lb_id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-48.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-20T14:18:40.121254Z","zone":"fr-par-1"},"private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","status":"ready","updated_at":"2023-10-20T14:19:12.067191Z"}],"total_count":1}' + body: '{"private_network":[{"created_at":"2023-10-27T07:50:33.802251Z","dhcp_config":{"ip_id":"09bd22a7-33be-49b2-9908-7ac791b4b54f"},"ipam_ids":["09bd22a7-33be-49b2-9908-7ac791b4b54f"],"lb":{"backend_count":0,"created_at":"2023-10-27T07:50:03.272667Z","description":"","frontend_count":0,"id":"81b984cc-a939-4be6-a09d-1f2913f5844d","instances":[],"ip":[{"id":"534c546e-f2a8-44f2-8b89-86559c0307ea","ip_address":"51.158.58.116","lb_id":"81b984cc-a939-4be6-a09d-1f2913f5844d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-58-116.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-27T07:50:09.331766Z","zone":"fr-par-1"},"private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","status":"ready","updated_at":"2023-10-27T07:50:42.801155Z"}],"total_count":1}' headers: Content-Length: - - "1231" + - "1233" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:33 GMT + - Fri, 27 Oct 2023 07:51:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1829,7 +1829,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20cc9491-69bc-4f4f-a76a-c1f964499884 + - 5920af1b-14ef-4b00-ab91-848a7bac7497 status: 200 OK code: 200 duration: "" @@ -1838,21 +1838,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a7fc3d66-e78d-4d61-ae45-7635df20d8cd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/81b984cc-a939-4be6-a09d-1f2913f5844d method: GET response: - body: '{"backend_count":0,"created_at":"2023-10-20T14:18:32.564371Z","description":"","frontend_count":0,"id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","instances":[{"created_at":"2023-10-20T14:12:52.137043Z","id":"a45718f6-ab56-425b-800c-bc95edaa18b0","ip_address":"","region":"fr-par","status":"ready","updated_at":"2023-10-20T14:19:11.776181Z","zone":"fr-par-1"}],"ip":[{"id":"f8576741-b282-4830-9813-a6b028e3f0ca","ip_address":"51.159.11.48","lb_id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-48.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-20T14:18:40.121254Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-10-27T07:50:03.272667Z","description":"","frontend_count":0,"id":"81b984cc-a939-4be6-a09d-1f2913f5844d","instances":[{"created_at":"2023-10-27T06:12:43.533028Z","id":"f89670ea-9a9b-4e33-a255-72d8ae66ca0a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2023-10-27T07:50:42.510387Z","zone":"fr-par-1"}],"ip":[{"id":"534c546e-f2a8-44f2-8b89-86559c0307ea","ip_address":"51.158.58.116","lb_id":"81b984cc-a939-4be6-a09d-1f2913f5844d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-58-116.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-27T07:50:09.331766Z","zone":"fr-par-1"}' headers: Content-Length: - - "1107" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:33 GMT + - Fri, 27 Oct 2023 07:51:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1862,7 +1862,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 465cf360-c7b3-4ebf-a2c5-df565387bb90 + - 68737b11-edb1-4da1-865f-214cc2f36f05 status: 200 OK code: 200 duration: "" @@ -1871,21 +1871,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a7fc3d66-e78d-4d61-ae45-7635df20d8cd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/81b984cc-a939-4be6-a09d-1f2913f5844d method: GET response: - body: '{"backend_count":0,"created_at":"2023-10-20T14:18:32.564371Z","description":"","frontend_count":0,"id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","instances":[{"created_at":"2023-10-20T14:12:52.137043Z","id":"a45718f6-ab56-425b-800c-bc95edaa18b0","ip_address":"","region":"fr-par","status":"ready","updated_at":"2023-10-20T14:19:11.776181Z","zone":"fr-par-1"}],"ip":[{"id":"f8576741-b282-4830-9813-a6b028e3f0ca","ip_address":"51.159.11.48","lb_id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-48.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-20T14:18:40.121254Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-10-27T07:50:03.272667Z","description":"","frontend_count":0,"id":"81b984cc-a939-4be6-a09d-1f2913f5844d","instances":[{"created_at":"2023-10-27T06:12:43.533028Z","id":"f89670ea-9a9b-4e33-a255-72d8ae66ca0a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2023-10-27T07:50:42.510387Z","zone":"fr-par-1"}],"ip":[{"id":"534c546e-f2a8-44f2-8b89-86559c0307ea","ip_address":"51.158.58.116","lb_id":"81b984cc-a939-4be6-a09d-1f2913f5844d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-58-116.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-27T07:50:09.331766Z","zone":"fr-par-1"}' headers: Content-Length: - - "1107" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:33 GMT + - Fri, 27 Oct 2023 07:51:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1895,7 +1895,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4df94a4-b219-4bd9-b346-d0589ac99557 + - 86def5f3-2d4a-4859-a8b4-ff37b41b5fc5 status: 200 OK code: 200 duration: "" @@ -1904,21 +1904,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a7fc3d66-e78d-4d61-ae45-7635df20d8cd/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/81b984cc-a939-4be6-a09d-1f2913f5844d/private-networks?order_by=created_at_asc method: GET response: - body: '{"private_network":[{"created_at":"2023-10-20T14:19:03.015448Z","dhcp_config":{"ip_id":"f1a92c22-e3cb-4d69-99d4-b915cc2287e6"},"ipam_ids":["f1a92c22-e3cb-4d69-99d4-b915cc2287e6"],"lb":{"backend_count":0,"created_at":"2023-10-20T14:18:32.564371Z","description":"","frontend_count":0,"id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","instances":[],"ip":[{"id":"f8576741-b282-4830-9813-a6b028e3f0ca","ip_address":"51.159.11.48","lb_id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-48.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-20T14:18:40.121254Z","zone":"fr-par-1"},"private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","status":"ready","updated_at":"2023-10-20T14:19:12.067191Z"}],"total_count":1}' + body: '{"private_network":[{"created_at":"2023-10-27T07:50:33.802251Z","dhcp_config":{"ip_id":"09bd22a7-33be-49b2-9908-7ac791b4b54f"},"ipam_ids":["09bd22a7-33be-49b2-9908-7ac791b4b54f"],"lb":{"backend_count":0,"created_at":"2023-10-27T07:50:03.272667Z","description":"","frontend_count":0,"id":"81b984cc-a939-4be6-a09d-1f2913f5844d","instances":[],"ip":[{"id":"534c546e-f2a8-44f2-8b89-86559c0307ea","ip_address":"51.158.58.116","lb_id":"81b984cc-a939-4be6-a09d-1f2913f5844d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-58-116.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-27T07:50:09.331766Z","zone":"fr-par-1"},"private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","status":"ready","updated_at":"2023-10-27T07:50:42.801155Z"}],"total_count":1}' headers: Content-Length: - - "1231" + - "1233" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:33 GMT + - Fri, 27 Oct 2023 07:51:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1928,7 +1928,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68984136-8b0d-4722-9f55-183a7a7d6def + - 0dc5edb4-b312-4b80-a8c3-efd1e4f18257 status: 200 OK code: 200 duration: "" @@ -1937,21 +1937,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a7fc3d66-e78d-4d61-ae45-7635df20d8cd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/81b984cc-a939-4be6-a09d-1f2913f5844d method: GET response: - body: '{"backend_count":0,"created_at":"2023-10-20T14:18:32.564371Z","description":"","frontend_count":0,"id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","instances":[{"created_at":"2023-10-20T14:12:52.137043Z","id":"a45718f6-ab56-425b-800c-bc95edaa18b0","ip_address":"","region":"fr-par","status":"ready","updated_at":"2023-10-20T14:19:11.776181Z","zone":"fr-par-1"}],"ip":[{"id":"f8576741-b282-4830-9813-a6b028e3f0ca","ip_address":"51.159.11.48","lb_id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-48.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-20T14:18:40.121254Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-10-27T07:50:03.272667Z","description":"","frontend_count":0,"id":"81b984cc-a939-4be6-a09d-1f2913f5844d","instances":[{"created_at":"2023-10-27T06:12:43.533028Z","id":"f89670ea-9a9b-4e33-a255-72d8ae66ca0a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2023-10-27T07:50:42.510387Z","zone":"fr-par-1"}],"ip":[{"id":"534c546e-f2a8-44f2-8b89-86559c0307ea","ip_address":"51.158.58.116","lb_id":"81b984cc-a939-4be6-a09d-1f2913f5844d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-58-116.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-27T07:50:09.331766Z","zone":"fr-par-1"}' headers: Content-Length: - - "1107" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:33 GMT + - Fri, 27 Oct 2023 07:51:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1961,7 +1961,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a16d7417-1eac-47a9-9d54-75ea0a76d872 + - 8f729a92-8595-4a78-a2cc-adc78a24e7fe status: 200 OK code: 200 duration: "" @@ -1970,21 +1970,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/f8576741-b282-4830-9813-a6b028e3f0ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/534c546e-f2a8-44f2-8b89-86559c0307ea method: GET response: - body: '{"id":"f8576741-b282-4830-9813-a6b028e3f0ca","ip_address":"51.159.11.48","lb_id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-48.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"534c546e-f2a8-44f2-8b89-86559c0307ea","ip_address":"51.158.58.116","lb_id":"81b984cc-a939-4be6-a09d-1f2913f5844d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-58-116.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "317" + - "319" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:33 GMT + - Fri, 27 Oct 2023 07:51:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1994,7 +1994,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19be82e1-d0c8-40ed-a9be-9b51e6f31554 + - 9d4b959c-1d28-43c1-85b5-8e959f266e80 status: 200 OK code: 200 duration: "" @@ -2003,21 +2003,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/77bc134a-7df0-4cd8-beae-9bb95127fbff + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/08e1a5d6-e11f-445d-896f-f9f5884517f7 method: GET response: - body: '{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.307165Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"77bc134a-7df0-4cd8-beae-9bb95127fbff","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.307165Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"address":"51.15.203.117","created_at":"2023-10-27T07:49:57.850232Z","gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"08e1a5d6-e11f-445d-896f-f9f5884517f7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"117-203-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T07:49:57.850232Z","zone":"fr-par-1"}' headers: Content-Length: - - "574" + - "401" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:34 GMT + - Fri, 27 Oct 2023 07:51:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2027,7 +2027,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 193f56bd-f059-460b-9ebd-d0947ed32570 + - 01408f9a-9e11-46de-bd84-fae949826f10 status: 200 OK code: 200 duration: "" @@ -2036,21 +2036,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/f5ad4bfe-5f76-48e3-bfc9-fe61c59d6b56 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/08a8311b-adb1-49b3-96ff-c011ee058db5 method: GET response: - body: '{"address":"51.15.139.125","created_at":"2023-10-20T14:18:26.967221Z","gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"f5ad4bfe-5f76-48e3-bfc9-fe61c59d6b56","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"125-139-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.967221Z","zone":"fr-par-1"}' + body: '{"address":"10.0.0.1","created_at":"2023-10-27T07:49:57.272395Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"08a8311b-adb1-49b3-96ff-c011ee058db5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T07:49:57.272395Z","valid_lifetime":"3600s","zone":"fr-par-1"}' headers: Content-Length: - - "401" + - "574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:34 GMT + - Fri, 27 Oct 2023 07:51:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2060,7 +2060,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a444e3c6-1f1b-48a3-85cd-a363c5c164d7 + - e3d3b4c7-2c41-4103-bd7b-060e54c09b85 status: 200 OK code: 200 duration: "" @@ -2069,21 +2069,22 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/f8576741-b282-4830-9813-a6b028e3f0ca + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6258f488-3864-4a3b-b3c2-9d9840ed4a45 method: GET response: - body: '{"id":"f8576741-b282-4830-9813-a6b028e3f0ca","ip_address":"51.159.11.48","lb_id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-48.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T07:49:57.265805Z","dhcp_enabled":true,"id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","name":"private + network with a DHCP config","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T07:49:57.265805Z","id":"4649bb05-cf93-42ab-8e55-e04b8638f73c","subnet":"10.0.0.0/24","updated_at":"2023-10-27T07:50:03.948947Z"},{"created_at":"2023-10-27T07:49:57.265805Z","id":"40176091-f218-4c1c-af64-e34e2fe4cae1","subnet":"fd46:78ab:30b8:4bb6::/64","updated_at":"2023-10-27T07:50:03.961572Z"}],"tags":[],"updated_at":"2023-10-27T07:50:07.898856Z","vpc_id":"efa5b723-b070-430a-8631-f3d487bacf8b"}' headers: Content-Length: - - "317" + - "732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:34 GMT + - Fri, 27 Oct 2023 07:51:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2093,7 +2094,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79392822-7ebd-4d04-a87a-06505c5f13f4 + - 37c21920-e7ea-41ad-be6e-7fb9bacca635 status: 200 OK code: 200 duration: "" @@ -2102,21 +2103,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/534c546e-f2a8-44f2-8b89-86559c0307ea method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.100301Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:18:34.664182Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.307165Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"77bc134a-7df0-4cd8-beae-9bb95127fbff","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.307165Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"538d6444-553e-46f3-9635-d08306cd5512","ipam_config":null,"mac_address":"02:00:00:14:57:CF","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","status":"ready","updated_at":"2023-10-20T14:18:37.880612Z","zone":"fr-par-1"}],"id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","ip":{"address":"51.15.139.125","created_at":"2023-10-20T14:18:26.967221Z","gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"f5ad4bfe-5f76-48e3-bfc9-fe61c59d6b56","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"125-139-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.967221Z","zone":"fr-par-1"},"is_legacy":true,"name":"tf-test-public-gw","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:38.010140Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"id":"534c546e-f2a8-44f2-8b89-86559c0307ea","ip_address":"51.158.58.116","lb_id":"81b984cc-a939-4be6-a09d-1f2913f5844d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-58-116.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "1963" + - "319" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:34 GMT + - Fri, 27 Oct 2023 07:51:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2126,7 +2127,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5918e4d-e9ae-4712-bfc5-94153521a5ea + - eb983e61-59f5-44c2-99ea-3977acc2cda5 status: 200 OK code: 200 duration: "" @@ -2135,22 +2136,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/487c2354-24bb-4b17-bf88-0d918610cea9 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/11059644-d3c3-4d95-bdc3-4b41c4e2b52d method: GET response: - body: '{"created_at":"2023-10-20T14:18:26.405234Z","dhcp_enabled":true,"id":"487c2354-24bb-4b17-bf88-0d918610cea9","name":"private - network with a DHCP config","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T14:18:26.405234Z","id":"6204fe9b-7942-4693-96e7-973d31fd34e7","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:32.782740Z"},{"created_at":"2023-10-20T14:18:26.405234Z","id":"f3d6c0a6-b866-4e96-8981-01110c629b0e","subnet":"fd5f:519c:6d46:9931::/64","updated_at":"2023-10-20T14:18:32.801520Z"}],"tags":[],"updated_at":"2023-10-20T14:18:37.498750Z","vpc_id":"42c81a78-acb1-4c3f-b117-e6e9aa76c1f7"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T07:49:58.005592Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T07:50:05.640274Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T07:49:57.272395Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"08a8311b-adb1-49b3-96ff-c011ee058db5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T07:49:57.272395Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"9d22e710-2b17-439c-bc74-0aaece0025c1","ipam_config":null,"mac_address":"02:00:00:14:73:C6","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","status":"ready","updated_at":"2023-10-27T07:50:08.215893Z","zone":"fr-par-1"}],"id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","ip":{"address":"51.15.203.117","created_at":"2023-10-27T07:49:57.850232Z","gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"08e1a5d6-e11f-445d-896f-f9f5884517f7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"117-203-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T07:49:57.850232Z","zone":"fr-par-1"},"is_legacy":true,"name":"tf-test-public-gw","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T07:50:08.312724Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "732" + - "1963" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:34 GMT + - Fri, 27 Oct 2023 07:51:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2160,7 +2160,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62f317a9-59ef-4fcb-9be7-788d0f614b2c + - 9bb15bac-c15e-4537-8b90-e60f3de5f4fe status: 200 OK code: 200 duration: "" @@ -2169,21 +2169,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a7fc3d66-e78d-4d61-ae45-7635df20d8cd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/81b984cc-a939-4be6-a09d-1f2913f5844d method: GET response: - body: '{"backend_count":0,"created_at":"2023-10-20T14:18:32.564371Z","description":"","frontend_count":0,"id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","instances":[{"created_at":"2023-10-20T14:12:52.137043Z","id":"a45718f6-ab56-425b-800c-bc95edaa18b0","ip_address":"","region":"fr-par","status":"ready","updated_at":"2023-10-20T14:19:11.776181Z","zone":"fr-par-1"}],"ip":[{"id":"f8576741-b282-4830-9813-a6b028e3f0ca","ip_address":"51.159.11.48","lb_id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-48.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-20T14:18:40.121254Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-10-27T07:50:03.272667Z","description":"","frontend_count":0,"id":"81b984cc-a939-4be6-a09d-1f2913f5844d","instances":[{"created_at":"2023-10-27T06:12:43.533028Z","id":"f89670ea-9a9b-4e33-a255-72d8ae66ca0a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2023-10-27T07:50:42.510387Z","zone":"fr-par-1"}],"ip":[{"id":"534c546e-f2a8-44f2-8b89-86559c0307ea","ip_address":"51.158.58.116","lb_id":"81b984cc-a939-4be6-a09d-1f2913f5844d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-58-116.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-27T07:50:09.331766Z","zone":"fr-par-1"}' headers: Content-Length: - - "1107" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:34 GMT + - Fri, 27 Oct 2023 07:51:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2193,7 +2193,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d32c3af7-a8cd-460f-afa9-2461f0485a1d + - f058727a-fd06-4e9f-a4bc-8506688c1b69 status: 200 OK code: 200 duration: "" @@ -2202,12 +2202,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/538d6444-553e-46f3-9635-d08306cd5512 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/9d22e710-2b17-439c-bc74-0aaece0025c1 method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:18:34.664182Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.307165Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"77bc134a-7df0-4cd8-beae-9bb95127fbff","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.307165Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"538d6444-553e-46f3-9635-d08306cd5512","ipam_config":null,"mac_address":"02:00:00:14:57:CF","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","status":"ready","updated_at":"2023-10-20T14:18:37.880612Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T07:50:05.640274Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T07:49:57.272395Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"08a8311b-adb1-49b3-96ff-c011ee058db5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T07:49:57.272395Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"9d22e710-2b17-439c-bc74-0aaece0025c1","ipam_config":null,"mac_address":"02:00:00:14:73:C6","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","status":"ready","updated_at":"2023-10-27T07:50:08.215893Z","zone":"fr-par-1"}' headers: Content-Length: - "984" @@ -2216,7 +2216,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:34 GMT + - Fri, 27 Oct 2023 07:51:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2226,7 +2226,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6219eff0-4c90-4a89-a74d-c1551d99b2d3 + - ee436cd8-7645-48ff-8d09-bdf994abcdf6 status: 200 OK code: 200 duration: "" @@ -2235,12 +2235,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/11059644-d3c3-4d95-bdc3-4b41c4e2b52d method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.100301Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:18:34.664182Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.307165Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"77bc134a-7df0-4cd8-beae-9bb95127fbff","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.307165Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"538d6444-553e-46f3-9635-d08306cd5512","ipam_config":null,"mac_address":"02:00:00:14:57:CF","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","status":"ready","updated_at":"2023-10-20T14:18:37.880612Z","zone":"fr-par-1"}],"id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","ip":{"address":"51.15.139.125","created_at":"2023-10-20T14:18:26.967221Z","gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"f5ad4bfe-5f76-48e3-bfc9-fe61c59d6b56","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"125-139-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.967221Z","zone":"fr-par-1"},"is_legacy":true,"name":"tf-test-public-gw","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:38.010140Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T07:49:58.005592Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T07:50:05.640274Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T07:49:57.272395Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"08a8311b-adb1-49b3-96ff-c011ee058db5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T07:49:57.272395Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"9d22e710-2b17-439c-bc74-0aaece0025c1","ipam_config":null,"mac_address":"02:00:00:14:73:C6","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","status":"ready","updated_at":"2023-10-27T07:50:08.215893Z","zone":"fr-par-1"}],"id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","ip":{"address":"51.15.203.117","created_at":"2023-10-27T07:49:57.850232Z","gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"08e1a5d6-e11f-445d-896f-f9f5884517f7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"117-203-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T07:49:57.850232Z","zone":"fr-par-1"},"is_legacy":true,"name":"tf-test-public-gw","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T07:50:08.312724Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "1963" @@ -2249,7 +2249,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:34 GMT + - Fri, 27 Oct 2023 07:51:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2259,7 +2259,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76409803-9214-43bf-862b-bf62d444a82e + - 03fd8399-baa2-4455-a705-9ae1da0353e4 status: 200 OK code: 200 duration: "" @@ -2268,21 +2268,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a7fc3d66-e78d-4d61-ae45-7635df20d8cd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/81b984cc-a939-4be6-a09d-1f2913f5844d method: GET response: - body: '{"backend_count":0,"created_at":"2023-10-20T14:18:32.564371Z","description":"","frontend_count":0,"id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","instances":[{"created_at":"2023-10-20T14:12:52.137043Z","id":"a45718f6-ab56-425b-800c-bc95edaa18b0","ip_address":"","region":"fr-par","status":"ready","updated_at":"2023-10-20T14:19:11.776181Z","zone":"fr-par-1"}],"ip":[{"id":"f8576741-b282-4830-9813-a6b028e3f0ca","ip_address":"51.159.11.48","lb_id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-48.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-20T14:18:40.121254Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-10-27T07:50:03.272667Z","description":"","frontend_count":0,"id":"81b984cc-a939-4be6-a09d-1f2913f5844d","instances":[{"created_at":"2023-10-27T06:12:43.533028Z","id":"f89670ea-9a9b-4e33-a255-72d8ae66ca0a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2023-10-27T07:50:42.510387Z","zone":"fr-par-1"}],"ip":[{"id":"534c546e-f2a8-44f2-8b89-86559c0307ea","ip_address":"51.158.58.116","lb_id":"81b984cc-a939-4be6-a09d-1f2913f5844d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-58-116.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-27T07:50:09.331766Z","zone":"fr-par-1"}' headers: Content-Length: - - "1107" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:34 GMT + - Fri, 27 Oct 2023 07:51:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2292,7 +2292,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e01a4b05-60aa-4db0-8e2f-608883cbf5c7 + - 03280321-a53c-473b-a8ad-36ca60a860a4 status: 200 OK code: 200 duration: "" @@ -2301,29 +2301,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8 method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.142624+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:49:58.404684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"601","node_id":"8","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:73","maintenances":[],"modification_date":"2023-10-20T14:18:45.082650+00:00","name":"Scaleway - Terraform Provider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.70.100.15","private_nics":[{"creation_date":"2023-10-20T14:18:45.787475+00:00","id":"d30911b2-df1e-4160-9363-3872d4594224","mac_address":"02:00:00:14:57:d0","modification_date":"2023-10-20T14:19:17.636021+00:00","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","server_id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.142624+00:00","export_uri":null,"id":"b60cee5c-b097-4855-a3ce-407f0bca70cc","modification_date":"2023-10-20T14:18:28.142624+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"18","hypervisor_id":"1602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b9:0f","maintenances":[],"modification_date":"2023-10-27T07:50:11.708409+00:00","name":"Scaleway + Terraform Provider","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.65.46.9","private_nics":[{"creation_date":"2023-10-27T07:50:15.733547+00:00","id":"1676de75-0790-49c2-89ce-471583a6dfb1","mac_address":"02:00:00:14:73:c7","modification_date":"2023-10-27T07:50:46.862423+00:00","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","server_id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:49:58.404684+00:00","export_uri":null,"id":"1d12bd43-e3da-44cc-b352-4445e6ca2172","modification_date":"2023-10-27T07:49:58.404684+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","name":"Scaleway Terraform Provider"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3150" + - "3149" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:34 GMT + - Fri, 27 Oct 2023 07:51:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2333,7 +2333,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a11a99e-fbda-4196-93d6-93d6385a2e72 + - ac42ed14-fe72-4d1d-8641-396b7e2a7e6c status: 200 OK code: 200 duration: "" @@ -2342,12 +2342,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/538d6444-553e-46f3-9635-d08306cd5512 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/9d22e710-2b17-439c-bc74-0aaece0025c1 method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:18:34.664182Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.307165Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"77bc134a-7df0-4cd8-beae-9bb95127fbff","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.307165Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"538d6444-553e-46f3-9635-d08306cd5512","ipam_config":null,"mac_address":"02:00:00:14:57:CF","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","status":"ready","updated_at":"2023-10-20T14:18:37.880612Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T07:50:05.640274Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T07:49:57.272395Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"08a8311b-adb1-49b3-96ff-c011ee058db5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T07:49:57.272395Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"9d22e710-2b17-439c-bc74-0aaece0025c1","ipam_config":null,"mac_address":"02:00:00:14:73:C6","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","status":"ready","updated_at":"2023-10-27T07:50:08.215893Z","zone":"fr-par-1"}' headers: Content-Length: - "984" @@ -2356,7 +2356,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:34 GMT + - Fri, 27 Oct 2023 07:51:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2366,7 +2366,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb2f82c5-83ae-45a3-a467-08af5d0d65ac + - 86a5ace4-769f-4768-8fb7-0b3746c9c945 status: 200 OK code: 200 duration: "" @@ -2375,21 +2375,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a7fc3d66-e78d-4d61-ae45-7635df20d8cd/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8/user_data method: GET response: - body: '{"private_network":[{"created_at":"2023-10-20T14:19:03.015448Z","dhcp_config":{"ip_id":"f1a92c22-e3cb-4d69-99d4-b915cc2287e6"},"ipam_ids":["f1a92c22-e3cb-4d69-99d4-b915cc2287e6"],"lb":{"backend_count":0,"created_at":"2023-10-20T14:18:32.564371Z","description":"","frontend_count":0,"id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","instances":[],"ip":[{"id":"f8576741-b282-4830-9813-a6b028e3f0ca","ip_address":"51.159.11.48","lb_id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-48.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-20T14:18:40.121254Z","zone":"fr-par-1"},"private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","status":"ready","updated_at":"2023-10-20T14:19:12.067191Z"}],"total_count":1}' + body: '{"user_data":[]}' headers: Content-Length: - - "1231" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:34 GMT + - Fri, 27 Oct 2023 07:51:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2399,7 +2399,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af1a082b-6892-4896-998c-238a19c65e86 + - f37c007b-3729-4905-af51-c51028f92802 status: 200 OK code: 200 duration: "" @@ -2408,21 +2408,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7/user_data + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/81b984cc-a939-4be6-a09d-1f2913f5844d/private-networks?order_by=created_at_asc method: GET response: - body: '{"user_data":[]}' + body: '{"private_network":[{"created_at":"2023-10-27T07:50:33.802251Z","dhcp_config":{"ip_id":"09bd22a7-33be-49b2-9908-7ac791b4b54f"},"ipam_ids":["09bd22a7-33be-49b2-9908-7ac791b4b54f"],"lb":{"backend_count":0,"created_at":"2023-10-27T07:50:03.272667Z","description":"","frontend_count":0,"id":"81b984cc-a939-4be6-a09d-1f2913f5844d","instances":[],"ip":[{"id":"534c546e-f2a8-44f2-8b89-86559c0307ea","ip_address":"51.158.58.116","lb_id":"81b984cc-a939-4be6-a09d-1f2913f5844d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-58-116.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-27T07:50:09.331766Z","zone":"fr-par-1"},"private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","status":"ready","updated_at":"2023-10-27T07:50:42.801155Z"}],"total_count":1}' headers: Content-Length: - - "17" + - "1233" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:34 GMT + - Fri, 27 Oct 2023 07:51:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2432,7 +2432,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16f83b63-675e-43c6-9880-6d278c8aeee6 + - 3babb8fb-9027-4fa0-97dc-532232107b5d status: 200 OK code: 200 duration: "" @@ -2441,12 +2441,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T14:18:45.787475+00:00","id":"d30911b2-df1e-4160-9363-3872d4594224","mac_address":"02:00:00:14:57:d0","modification_date":"2023-10-20T14:19:17.636021+00:00","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","server_id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T07:50:15.733547+00:00","id":"1676de75-0790-49c2-89ce-471583a6dfb1","mac_address":"02:00:00:14:73:c7","modification_date":"2023-10-27T07:50:46.862423+00:00","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","server_id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "381" @@ -2455,9 +2455,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:34 GMT + - Fri, 27 Oct 2023 07:51:05 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -2468,7 +2468,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 006bf420-6fba-4d35-ad09-1716a882902c + - 87913a41-d42f-40d6-9c03-b46c69188d79 X-Total-Count: - "1" status: 200 OK @@ -2479,12 +2479,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/538d6444-553e-46f3-9635-d08306cd5512 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/9d22e710-2b17-439c-bc74-0aaece0025c1 method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:18:34.664182Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.307165Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"77bc134a-7df0-4cd8-beae-9bb95127fbff","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.307165Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"538d6444-553e-46f3-9635-d08306cd5512","ipam_config":null,"mac_address":"02:00:00:14:57:CF","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","status":"ready","updated_at":"2023-10-20T14:18:37.880612Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T07:50:05.640274Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T07:49:57.272395Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"08a8311b-adb1-49b3-96ff-c011ee058db5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T07:49:57.272395Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"9d22e710-2b17-439c-bc74-0aaece0025c1","ipam_config":null,"mac_address":"02:00:00:14:73:C6","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","status":"ready","updated_at":"2023-10-27T07:50:08.215893Z","zone":"fr-par-1"}' headers: Content-Length: - "984" @@ -2493,7 +2493,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:35 GMT + - Fri, 27 Oct 2023 07:51:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2503,7 +2503,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a77275b-47df-41bf-a186-039b3aca214b + - 54cd2f38-9386-4b3e-9b02-35b1280031fb status: 200 OK code: 200 duration: "" @@ -2512,21 +2512,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a7fc3d66-e78d-4d61-ae45-7635df20d8cd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/81b984cc-a939-4be6-a09d-1f2913f5844d method: GET response: - body: '{"backend_count":0,"created_at":"2023-10-20T14:18:32.564371Z","description":"","frontend_count":0,"id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","instances":[{"created_at":"2023-10-20T14:12:52.137043Z","id":"a45718f6-ab56-425b-800c-bc95edaa18b0","ip_address":"","region":"fr-par","status":"ready","updated_at":"2023-10-20T14:19:11.776181Z","zone":"fr-par-1"}],"ip":[{"id":"f8576741-b282-4830-9813-a6b028e3f0ca","ip_address":"51.159.11.48","lb_id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-48.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-20T14:18:40.121254Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-10-27T07:50:03.272667Z","description":"","frontend_count":0,"id":"81b984cc-a939-4be6-a09d-1f2913f5844d","instances":[{"created_at":"2023-10-27T06:12:43.533028Z","id":"f89670ea-9a9b-4e33-a255-72d8ae66ca0a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2023-10-27T07:50:42.510387Z","zone":"fr-par-1"}],"ip":[{"id":"534c546e-f2a8-44f2-8b89-86559c0307ea","ip_address":"51.158.58.116","lb_id":"81b984cc-a939-4be6-a09d-1f2913f5844d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-58-116.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-27T07:50:09.331766Z","zone":"fr-par-1"}' headers: Content-Length: - - "1107" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:35 GMT + - Fri, 27 Oct 2023 07:51:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2536,7 +2536,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c59feb82-0783-4a98-9865-faa7e0711b02 + - 3511cf66-cb94-49c3-a974-9b46077af77b status: 200 OK code: 200 duration: "" @@ -2545,19 +2545,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/538d6444-553e-46f3-9635-d08306cd5512?cleanup_dhcp=true - method: DELETE + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/81b984cc-a939-4be6-a09d-1f2913f5844d/private-networks?order_by=created_at_asc + method: GET response: - body: "" + body: '{"private_network":[{"created_at":"2023-10-27T07:50:33.802251Z","dhcp_config":{"ip_id":"09bd22a7-33be-49b2-9908-7ac791b4b54f"},"ipam_ids":["09bd22a7-33be-49b2-9908-7ac791b4b54f"],"lb":{"backend_count":0,"created_at":"2023-10-27T07:50:03.272667Z","description":"","frontend_count":0,"id":"81b984cc-a939-4be6-a09d-1f2913f5844d","instances":[],"ip":[{"id":"534c546e-f2a8-44f2-8b89-86559c0307ea","ip_address":"51.158.58.116","lb_id":"81b984cc-a939-4be6-a09d-1f2913f5844d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-58-116.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-27T07:50:09.331766Z","zone":"fr-par-1"},"private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","status":"ready","updated_at":"2023-10-27T07:50:42.801155Z"}],"total_count":1}' headers: + Content-Length: + - "1233" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:35 GMT + - Fri, 27 Oct 2023 07:51:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2567,38 +2569,38 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47cd4325-cd2c-4233-a826-6ee4e68816dc - status: 204 No Content - code: 204 + - 93a4bb4e-5028-4bda-beb4-dca7789d03a1 + status: 200 OK + code: 200 duration: "" - request: body: "" form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8 method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.142624+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:49:58.404684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"601","node_id":"8","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:73","maintenances":[],"modification_date":"2023-10-20T14:18:45.082650+00:00","name":"Scaleway - Terraform Provider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.70.100.15","private_nics":[{"creation_date":"2023-10-20T14:18:45.787475+00:00","id":"d30911b2-df1e-4160-9363-3872d4594224","mac_address":"02:00:00:14:57:d0","modification_date":"2023-10-20T14:19:17.636021+00:00","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","server_id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.142624+00:00","export_uri":null,"id":"b60cee5c-b097-4855-a3ce-407f0bca70cc","modification_date":"2023-10-20T14:18:28.142624+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"18","hypervisor_id":"1602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b9:0f","maintenances":[],"modification_date":"2023-10-27T07:50:11.708409+00:00","name":"Scaleway + Terraform Provider","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.65.46.9","private_nics":[{"creation_date":"2023-10-27T07:50:15.733547+00:00","id":"1676de75-0790-49c2-89ce-471583a6dfb1","mac_address":"02:00:00:14:73:c7","modification_date":"2023-10-27T07:50:46.862423+00:00","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","server_id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:49:58.404684+00:00","export_uri":null,"id":"1d12bd43-e3da-44cc-b352-4445e6ca2172","modification_date":"2023-10-27T07:49:58.404684+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","name":"Scaleway Terraform Provider"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3150" + - "3149" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:35 GMT + - Fri, 27 Oct 2023 07:51:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2608,7 +2610,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2c02e02-3b7b-40e0-bfed-5bb9a49c405b + - ba5a88e3-87d0-47d8-ba3b-36c8e70b4379 status: 200 OK code: 200 duration: "" @@ -2617,21 +2619,19 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a7fc3d66-e78d-4d61-ae45-7635df20d8cd/private-networks?order_by=created_at_asc - method: GET + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/9d22e710-2b17-439c-bc74-0aaece0025c1?cleanup_dhcp=true + method: DELETE response: - body: '{"private_network":[{"created_at":"2023-10-20T14:19:03.015448Z","dhcp_config":{"ip_id":"f1a92c22-e3cb-4d69-99d4-b915cc2287e6"},"ipam_ids":["f1a92c22-e3cb-4d69-99d4-b915cc2287e6"],"lb":{"backend_count":0,"created_at":"2023-10-20T14:18:32.564371Z","description":"","frontend_count":0,"id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","instances":[],"ip":[{"id":"f8576741-b282-4830-9813-a6b028e3f0ca","ip_address":"51.159.11.48","lb_id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-48.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-20T14:18:40.121254Z","zone":"fr-par-1"},"private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","status":"ready","updated_at":"2023-10-20T14:19:12.067191Z"}],"total_count":1}' + body: "" headers: - Content-Length: - - "1231" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:35 GMT + - Fri, 27 Oct 2023 07:51:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2641,21 +2641,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea3d2275-dc4c-43fa-8048-f8a7f5f08ce5 - status: 200 OK - code: 200 + - 84f661ec-8137-437e-9632-7f4dec40847a + status: 204 No Content + code: 204 duration: "" - request: body: "" form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/538d6444-553e-46f3-9635-d08306cd5512 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/9d22e710-2b17-439c-bc74-0aaece0025c1 method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:18:34.664182Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.307165Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"77bc134a-7df0-4cd8-beae-9bb95127fbff","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.307165Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"538d6444-553e-46f3-9635-d08306cd5512","ipam_config":null,"mac_address":"02:00:00:14:57:CF","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","status":"detaching","updated_at":"2023-10-20T14:19:35.618427Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T07:50:05.640274Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T07:49:57.272395Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"08a8311b-adb1-49b3-96ff-c011ee058db5","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T07:49:57.272395Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"9d22e710-2b17-439c-bc74-0aaece0025c1","ipam_config":null,"mac_address":"02:00:00:14:73:C6","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","status":"detaching","updated_at":"2023-10-27T07:51:05.907601Z","zone":"fr-par-1"}' headers: Content-Length: - "988" @@ -2664,7 +2664,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:35 GMT + - Fri, 27 Oct 2023 07:51:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2674,7 +2674,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2171ca0-6aaa-4e91-841d-5f8ad90e449c + - ab59c6f6-11fb-4e77-85a1-30458551a518 status: 200 OK code: 200 duration: "" @@ -2685,9 +2685,9 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a7fc3d66-e78d-4d61-ae45-7635df20d8cd/private-networks/487c2354-24bb-4b17-bf88-0d918610cea9/detach + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/81b984cc-a939-4be6-a09d-1f2913f5844d/private-networks/6258f488-3864-4a3b-b3c2-9d9840ed4a45/detach method: POST response: body: "" @@ -2697,7 +2697,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:35 GMT + - Fri, 27 Oct 2023 07:51:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2707,34 +2707,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb2edfa1-1c9f-497a-99a8-0e5bc95df8d1 + - 7b41ea8e-8a93-41bc-87ca-4f3f25d03a5c status: 204 No Content code: 204 duration: "" - request: - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7/action - method: POST + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/81b984cc-a939-4be6-a09d-1f2913f5844d + method: GET response: - body: '{"task":{"description":"server_poweroff","href_from":"/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7/action","href_result":"/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7","id":"aca37943-2631-4c01-83ef-c2dbc195c170","started_at":"2023-10-20T14:19:35.987697+00:00","status":"pending","terminated_at":null}}' + body: '{"backend_count":0,"created_at":"2023-10-27T07:50:03.272667Z","description":"","frontend_count":0,"id":"81b984cc-a939-4be6-a09d-1f2913f5844d","instances":[{"created_at":"2023-10-27T06:12:43.533028Z","id":"f89670ea-9a9b-4e33-a255-72d8ae66ca0a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2023-10-27T07:50:42.510387Z","zone":"fr-par-1"}],"ip":[{"id":"534c546e-f2a8-44f2-8b89-86559c0307ea","ip_address":"51.158.58.116","lb_id":"81b984cc-a939-4be6-a09d-1f2913f5844d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-58-116.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-27T07:50:09.331766Z","zone":"fr-par-1"}' headers: Content-Length: - - "317" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:36 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/aca37943-2631-4c01-83ef-c2dbc195c170 + - Fri, 27 Oct 2023 07:51:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2744,30 +2740,34 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e4068b8-1796-4633-8338-08b0f62ff60c - status: 202 Accepted - code: 202 + - a177ccd2-fa8a-46a7-9170-0dffaa4a06cb + status: 200 OK + code: 200 duration: "" - request: - body: "" + body: '{"action":"poweroff"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a7fc3d66-e78d-4d61-ae45-7635df20d8cd - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8/action + method: POST response: - body: '{"backend_count":0,"created_at":"2023-10-20T14:18:32.564371Z","description":"","frontend_count":0,"id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","instances":[{"created_at":"2023-10-20T14:12:52.137043Z","id":"a45718f6-ab56-425b-800c-bc95edaa18b0","ip_address":"","region":"fr-par","status":"ready","updated_at":"2023-10-20T14:19:11.776181Z","zone":"fr-par-1"}],"ip":[{"id":"f8576741-b282-4830-9813-a6b028e3f0ca","ip_address":"51.159.11.48","lb_id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-48.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-20T14:18:40.121254Z","zone":"fr-par-1"}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8/action","href_result":"/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8","id":"fe63f2a8-1f35-4cf2-abb6-3ec385cafb8c","started_at":"2023-10-27T07:51:06.207718+00:00","status":"pending","terminated_at":null}}' headers: Content-Length: - - "1107" + - "317" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:36 GMT + - Fri, 27 Oct 2023 07:51:06 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fe63f2a8-1f35-4cf2-abb6-3ec385cafb8c Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2777,38 +2777,38 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a61814a-99f9-4d95-880d-7bba645e7d37 - status: 200 OK - code: 200 + - 8b4627ec-4ff3-4bbe-9a85-7728d99f389f + status: 202 Accepted + code: 202 duration: "" - request: body: "" form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.142624+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:49:58.404684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"601","node_id":"8","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:73","maintenances":[],"modification_date":"2023-10-20T14:19:35.685297+00:00","name":"Scaleway - Terraform Provider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.70.100.15","private_nics":[{"creation_date":"2023-10-20T14:18:45.787475+00:00","id":"d30911b2-df1e-4160-9363-3872d4594224","mac_address":"02:00:00:14:57:d0","modification_date":"2023-10-20T14:19:17.636021+00:00","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","server_id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.142624+00:00","export_uri":null,"id":"b60cee5c-b097-4855-a3ce-407f0bca70cc","modification_date":"2023-10-20T14:18:28.142624+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"18","hypervisor_id":"1602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b9:0f","maintenances":[],"modification_date":"2023-10-27T07:51:05.928338+00:00","name":"Scaleway + Terraform Provider","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.65.46.9","private_nics":[{"creation_date":"2023-10-27T07:50:15.733547+00:00","id":"1676de75-0790-49c2-89ce-471583a6dfb1","mac_address":"02:00:00:14:73:c7","modification_date":"2023-10-27T07:50:46.862423+00:00","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","server_id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:49:58.404684+00:00","export_uri":null,"id":"1d12bd43-e3da-44cc-b352-4445e6ca2172","modification_date":"2023-10-27T07:49:58.404684+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","name":"Scaleway Terraform Provider"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3118" + - "3117" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:36 GMT + - Fri, 27 Oct 2023 07:51:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2818,7 +2818,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca8a4609-89f8-48ec-a46a-727a66fe8128 + - 0e7d29e5-49d3-40c7-9421-edca28651a6a status: 200 OK code: 200 duration: "" @@ -2827,9 +2827,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a7fc3d66-e78d-4d61-ae45-7635df20d8cd?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/81b984cc-a939-4be6-a09d-1f2913f5844d?release_ip=false method: DELETE response: body: "" @@ -2839,7 +2839,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:36 GMT + - Fri, 27 Oct 2023 07:51:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2849,7 +2849,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27cb437b-2d31-4cdb-972b-60dcb644f52a + - 63b9b465-dd94-483c-a120-e0568c8b2f83 status: 204 No Content code: 204 duration: "" @@ -2858,21 +2858,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a7fc3d66-e78d-4d61-ae45-7635df20d8cd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/81b984cc-a939-4be6-a09d-1f2913f5844d method: GET response: - body: '{"backend_count":0,"created_at":"2023-10-20T14:18:32.564371Z","description":"","frontend_count":0,"id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","instances":[{"created_at":"2023-10-20T14:12:52.137043Z","id":"a45718f6-ab56-425b-800c-bc95edaa18b0","ip_address":"","region":"fr-par","status":"ready","updated_at":"2023-10-20T14:19:11.776181Z","zone":"fr-par-1"}],"ip":[{"id":"f8576741-b282-4830-9813-a6b028e3f0ca","ip_address":"51.159.11.48","lb_id":"a7fc3d66-e78d-4d61-ae45-7635df20d8cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-48.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_delete","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-20T14:19:36.157032Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2023-10-27T07:50:03.272667Z","description":"","frontend_count":0,"id":"81b984cc-a939-4be6-a09d-1f2913f5844d","instances":[{"created_at":"2023-10-27T06:12:43.533028Z","id":"f89670ea-9a9b-4e33-a255-72d8ae66ca0a","ip_address":"","region":"fr-par","status":"ready","updated_at":"2023-10-27T07:50:42.510387Z","zone":"fr-par-1"}],"ip":[{"id":"534c546e-f2a8-44f2-8b89-86559c0307ea","ip_address":"51.158.58.116","lb_id":"81b984cc-a939-4be6-a09d-1f2913f5844d","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-58-116.lb.fr-par.scw.cloud","zone":"fr-par-1"}],"name":"test-lb-with-private-network-configs","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_delete","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2023-10-27T07:51:06.294864Z","zone":"fr-par-1"}' headers: Content-Length: - - "1111" + - "1113" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:36 GMT + - Fri, 27 Oct 2023 07:51:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2882,7 +2882,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c68cff1f-00c7-4dcf-97c0-06d7a8714788 + - 0a6e3166-a0e0-4ec2-bc8d-1d2b4a5dd06a status: 200 OK code: 200 duration: "" @@ -2891,12 +2891,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/538d6444-553e-46f3-9635-d08306cd5512 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/9d22e710-2b17-439c-bc74-0aaece0025c1 method: GET response: - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"538d6444-553e-46f3-9635-d08306cd5512","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"9d22e710-2b17-439c-bc74-0aaece0025c1","type":"not_found"}' headers: Content-Length: - "136" @@ -2905,7 +2905,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:40 GMT + - Fri, 27 Oct 2023 07:51:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2915,7 +2915,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93601ed3-4a0c-4d67-93aa-dba809604e7d + - 13ee000d-6957-4159-a6db-c8ea39004905 status: 404 Not Found code: 404 duration: "" @@ -2924,12 +2924,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/11059644-d3c3-4d95-bdc3-4b41c4e2b52d method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.100301Z","gateway_networks":[],"id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","ip":{"address":"51.15.139.125","created_at":"2023-10-20T14:18:26.967221Z","gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"f5ad4bfe-5f76-48e3-bfc9-fe61c59d6b56","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"125-139-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.967221Z","zone":"fr-par-1"},"is_legacy":true,"name":"tf-test-public-gw","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:38.010140Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T07:49:58.005592Z","gateway_networks":[],"id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","ip":{"address":"51.15.203.117","created_at":"2023-10-27T07:49:57.850232Z","gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"08e1a5d6-e11f-445d-896f-f9f5884517f7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"117-203-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T07:49:57.850232Z","zone":"fr-par-1"},"is_legacy":true,"name":"tf-test-public-gw","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T07:50:08.312724Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "979" @@ -2938,7 +2938,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:40 GMT + - Fri, 27 Oct 2023 07:51:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2948,7 +2948,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7836d365-689e-467f-9b23-edfd0d3d2aa2 + - 706c9afa-afd2-44f0-80aa-f7156396f517 status: 200 OK code: 200 duration: "" @@ -2957,12 +2957,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/77bc134a-7df0-4cd8-beae-9bb95127fbff + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/08a8311b-adb1-49b3-96ff-c011ee058db5 method: DELETE response: - body: '{"message":"resource is not found","resource":"dhcp","resource_id":"77bc134a-7df0-4cd8-beae-9bb95127fbff","type":"not_found"}' + body: '{"message":"resource is not found","resource":"dhcp","resource_id":"08a8311b-adb1-49b3-96ff-c011ee058db5","type":"not_found"}' headers: Content-Length: - "125" @@ -2971,7 +2971,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:40 GMT + - Fri, 27 Oct 2023 07:51:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2981,7 +2981,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49da8e6f-e060-4235-9194-6f1230237050 + - 902e7f18-fb6b-499e-9460-34a2e9fb09ff status: 404 Not Found code: 404 duration: "" @@ -2990,29 +2990,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.142624+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:49:58.404684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"601","node_id":"8","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:73","maintenances":[],"modification_date":"2023-10-20T14:19:35.685297+00:00","name":"Scaleway - Terraform Provider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.70.100.15","private_nics":[{"creation_date":"2023-10-20T14:18:45.787475+00:00","id":"d30911b2-df1e-4160-9363-3872d4594224","mac_address":"02:00:00:14:57:d0","modification_date":"2023-10-20T14:19:17.636021+00:00","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","server_id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.142624+00:00","export_uri":null,"id":"b60cee5c-b097-4855-a3ce-407f0bca70cc","modification_date":"2023-10-20T14:18:28.142624+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"18","hypervisor_id":"1602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b9:0f","maintenances":[],"modification_date":"2023-10-27T07:51:05.928338+00:00","name":"Scaleway + Terraform Provider","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.65.46.9","private_nics":[{"creation_date":"2023-10-27T07:50:15.733547+00:00","id":"1676de75-0790-49c2-89ce-471583a6dfb1","mac_address":"02:00:00:14:73:c7","modification_date":"2023-10-27T07:50:46.862423+00:00","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","server_id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:49:58.404684+00:00","export_uri":null,"id":"1d12bd43-e3da-44cc-b352-4445e6ca2172","modification_date":"2023-10-27T07:49:58.404684+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","name":"Scaleway Terraform Provider"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3118" + - "3117" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:41 GMT + - Fri, 27 Oct 2023 07:51:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3022,7 +3022,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd7ef84c-ce22-4138-a5ae-050eb8ce5b61 + - bca4245b-935d-48b9-8d0d-cbec7003b5b6 status: 200 OK code: 200 duration: "" @@ -3031,29 +3031,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.142624+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:49:58.404684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"601","node_id":"8","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:73","maintenances":[],"modification_date":"2023-10-20T14:19:35.685297+00:00","name":"Scaleway - Terraform Provider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.70.100.15","private_nics":[{"creation_date":"2023-10-20T14:18:45.787475+00:00","id":"d30911b2-df1e-4160-9363-3872d4594224","mac_address":"02:00:00:14:57:d0","modification_date":"2023-10-20T14:19:17.636021+00:00","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","server_id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.142624+00:00","export_uri":null,"id":"b60cee5c-b097-4855-a3ce-407f0bca70cc","modification_date":"2023-10-20T14:18:28.142624+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"18","hypervisor_id":"1602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b9:0f","maintenances":[],"modification_date":"2023-10-27T07:51:05.928338+00:00","name":"Scaleway + Terraform Provider","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.65.46.9","private_nics":[{"creation_date":"2023-10-27T07:50:15.733547+00:00","id":"1676de75-0790-49c2-89ce-471583a6dfb1","mac_address":"02:00:00:14:73:c7","modification_date":"2023-10-27T07:50:46.862423+00:00","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","server_id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:49:58.404684+00:00","export_uri":null,"id":"1d12bd43-e3da-44cc-b352-4445e6ca2172","modification_date":"2023-10-27T07:49:58.404684+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","name":"Scaleway Terraform Provider"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3118" + - "3117" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:46 GMT + - Fri, 27 Oct 2023 07:51:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3063,7 +3063,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d7b9600-82b5-4df8-be60-ca452aecd103 + - a9e5da36-36de-4274-b786-c36c7157ddd0 status: 200 OK code: 200 duration: "" @@ -3072,29 +3072,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.142624+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:49:58.404684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"601","node_id":"8","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:73","maintenances":[],"modification_date":"2023-10-20T14:19:35.685297+00:00","name":"Scaleway - Terraform Provider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.70.100.15","private_nics":[{"creation_date":"2023-10-20T14:18:45.787475+00:00","id":"d30911b2-df1e-4160-9363-3872d4594224","mac_address":"02:00:00:14:57:d0","modification_date":"2023-10-20T14:19:17.636021+00:00","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","server_id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.142624+00:00","export_uri":null,"id":"b60cee5c-b097-4855-a3ce-407f0bca70cc","modification_date":"2023-10-20T14:18:28.142624+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"18","hypervisor_id":"1602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b9:0f","maintenances":[],"modification_date":"2023-10-27T07:51:05.928338+00:00","name":"Scaleway + Terraform Provider","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.65.46.9","private_nics":[{"creation_date":"2023-10-27T07:50:15.733547+00:00","id":"1676de75-0790-49c2-89ce-471583a6dfb1","mac_address":"02:00:00:14:73:c7","modification_date":"2023-10-27T07:50:46.862423+00:00","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","server_id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:49:58.404684+00:00","export_uri":null,"id":"1d12bd43-e3da-44cc-b352-4445e6ca2172","modification_date":"2023-10-27T07:49:58.404684+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","name":"Scaleway Terraform Provider"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3118" + - "3117" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:51 GMT + - Fri, 27 Oct 2023 07:51:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3104,7 +3104,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 863a5adf-1c3d-4cac-b748-28a203fdcb6e + - b93a2ddf-3995-47b2-9a64-82da794b0b0f status: 200 OK code: 200 duration: "" @@ -3113,29 +3113,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.142624+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:49:58.404684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"601","node_id":"8","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:73","maintenances":[],"modification_date":"2023-10-20T14:19:35.685297+00:00","name":"Scaleway - Terraform Provider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.70.100.15","private_nics":[{"creation_date":"2023-10-20T14:18:45.787475+00:00","id":"d30911b2-df1e-4160-9363-3872d4594224","mac_address":"02:00:00:14:57:d0","modification_date":"2023-10-20T14:19:17.636021+00:00","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","server_id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.142624+00:00","export_uri":null,"id":"b60cee5c-b097-4855-a3ce-407f0bca70cc","modification_date":"2023-10-20T14:18:28.142624+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"18","hypervisor_id":"1602","node_id":"5","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:b9:0f","maintenances":[],"modification_date":"2023-10-27T07:51:05.928338+00:00","name":"Scaleway + Terraform Provider","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.65.46.9","private_nics":[{"creation_date":"2023-10-27T07:50:15.733547+00:00","id":"1676de75-0790-49c2-89ce-471583a6dfb1","mac_address":"02:00:00:14:73:c7","modification_date":"2023-10-27T07:50:46.862423+00:00","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","server_id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:49:58.404684+00:00","export_uri":null,"id":"1d12bd43-e3da-44cc-b352-4445e6ca2172","modification_date":"2023-10-27T07:49:58.404684+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","name":"Scaleway Terraform Provider"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3118" + - "3117" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:57 GMT + - Fri, 27 Oct 2023 07:51:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3145,7 +3145,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29687dbb-1c8e-475b-99ae-70dbca1279c6 + - 1dc1d566-0604-49cb-ae5f-bcd9122760d6 status: 200 OK code: 200 duration: "" @@ -3154,19 +3154,19 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8 method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.142624+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:49:58.404684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:b1:73","maintenances":[],"modification_date":"2023-10-20T14:19:59.330190+00:00","name":"Scaleway - Terraform Provider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2023-10-20T14:18:45.787475+00:00","id":"d30911b2-df1e-4160-9363-3872d4594224","mac_address":"02:00:00:14:57:d0","modification_date":"2023-10-20T14:19:17.636021+00:00","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","server_id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.142624+00:00","export_uri":null,"id":"b60cee5c-b097-4855-a3ce-407f0bca70cc","modification_date":"2023-10-20T14:18:28.142624+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:b9:0f","maintenances":[],"modification_date":"2023-10-27T07:51:26.956893+00:00","name":"Scaleway + Terraform Provider","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2023-10-27T07:50:15.733547+00:00","id":"1676de75-0790-49c2-89ce-471583a6dfb1","mac_address":"02:00:00:14:73:c7","modification_date":"2023-10-27T07:50:46.862423+00:00","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","server_id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:49:58.404684+00:00","export_uri":null,"id":"1d12bd43-e3da-44cc-b352-4445e6ca2172","modification_date":"2023-10-27T07:49:58.404684+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","name":"Scaleway Terraform Provider"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: @@ -3176,7 +3176,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:02 GMT + - Fri, 27 Oct 2023 07:51:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3186,7 +3186,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d2af6e5-5cdb-4890-b150-5bece9662d5c + - f5463e83-b489-4728-b5ed-e56c574a626f status: 200 OK code: 200 duration: "" @@ -3195,12 +3195,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T14:18:45.787475+00:00","id":"d30911b2-df1e-4160-9363-3872d4594224","mac_address":"02:00:00:14:57:d0","modification_date":"2023-10-20T14:19:17.636021+00:00","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","server_id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T07:50:15.733547+00:00","id":"1676de75-0790-49c2-89ce-471583a6dfb1","mac_address":"02:00:00:14:73:c7","modification_date":"2023-10-27T07:50:46.862423+00:00","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","server_id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "381" @@ -3209,9 +3209,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:02 GMT + - Fri, 27 Oct 2023 07:51:32 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -3222,7 +3222,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f83ddb05-cec7-405d-8eca-eee6638963f6 + - fa5bfac2-628d-4557-a517-0c4f42d32e3b X-Total-Count: - "1" status: 200 OK @@ -3233,12 +3233,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7/private_nics/d30911b2-df1e-4160-9363-3872d4594224 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8/private_nics/1676de75-0790-49c2-89ce-471583a6dfb1 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:18:45.787475+00:00","id":"d30911b2-df1e-4160-9363-3872d4594224","mac_address":"02:00:00:14:57:d0","modification_date":"2023-10-20T14:19:17.636021+00:00","private_network_id":"487c2354-24bb-4b17-bf88-0d918610cea9","server_id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T07:50:15.733547+00:00","id":"1676de75-0790-49c2-89ce-471583a6dfb1","mac_address":"02:00:00:14:73:c7","modification_date":"2023-10-27T07:50:46.862423+00:00","private_network_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","server_id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "378" @@ -3247,7 +3247,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:02 GMT + - Fri, 27 Oct 2023 07:51:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3257,7 +3257,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a621255-3865-4e62-96de-58d17390bd2d + - 5d6e391d-7f40-4381-808f-e3bd344be38f status: 200 OK code: 200 duration: "" @@ -3266,9 +3266,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7/private_nics/d30911b2-df1e-4160-9363-3872d4594224 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8/private_nics/1676de75-0790-49c2-89ce-471583a6dfb1 method: DELETE response: body: "" @@ -3276,7 +3276,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 20 Oct 2023 14:20:02 GMT + - Fri, 27 Oct 2023 07:51:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3286,7 +3286,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77edda28-7544-43a0-aa86-7c6db989720c + - ec92f668-47de-49fb-9bcf-2e2bac64654a status: 204 No Content code: 204 duration: "" @@ -3295,12 +3295,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7/private_nics/d30911b2-df1e-4160-9363-3872d4594224 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8/private_nics/1676de75-0790-49c2-89ce-471583a6dfb1 method: GET response: - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"d30911b2-df1e-4160-9363-3872d4594224","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"1676de75-0790-49c2-89ce-471583a6dfb1","type":"not_found"}' headers: Content-Length: - "148" @@ -3309,7 +3309,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:02 GMT + - Fri, 27 Oct 2023 07:51:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3319,7 +3319,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80b3770e-a42d-452b-8380-af29d1ed7e16 + - a9ccd277-ad5e-4c20-b218-b089591b3160 status: 404 Not Found code: 404 duration: "" @@ -3328,19 +3328,19 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8 method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.142624+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T07:49:58.404684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-terraform-provider","id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:b1:73","maintenances":[],"modification_date":"2023-10-20T14:19:59.330190+00:00","name":"Scaleway - Terraform Provider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.142624+00:00","export_uri":null,"id":"b60cee5c-b097-4855-a3ce-407f0bca70cc","modification_date":"2023-10-20T14:18:28.142624+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:b9:0f","maintenances":[],"modification_date":"2023-10-27T07:51:26.956893+00:00","name":"Scaleway + Terraform Provider","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T07:49:58.404684+00:00","export_uri":null,"id":"1d12bd43-e3da-44cc-b352-4445e6ca2172","modification_date":"2023-10-27T07:49:58.404684+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","name":"Scaleway Terraform Provider"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: @@ -3350,7 +3350,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:03 GMT + - Fri, 27 Oct 2023 07:51:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3360,7 +3360,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3dd4fcae-3b8d-4d58-92aa-e72e76a45cc6 + - 040e459a-ab65-46dd-914c-8016ceff5f41 status: 200 OK code: 200 duration: "" @@ -3369,9 +3369,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8 method: DELETE response: body: "" @@ -3379,7 +3379,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 20 Oct 2023 14:20:03 GMT + - Fri, 27 Oct 2023 07:51:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3389,7 +3389,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b82e68b5-cf91-4ecf-b76c-0699ace22ee9 + - 2b1ff047-a6d7-4a64-9348-42884d55f34e status: 204 No Content code: 204 duration: "" @@ -3398,12 +3398,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8 method: GET response: - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","type":"not_found"}' headers: Content-Length: - "143" @@ -3412,7 +3412,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:03 GMT + - Fri, 27 Oct 2023 07:51:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3422,7 +3422,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89b522a8-ebab-4876-bc6c-a4bdf1b82245 + - e1898a3d-fa67-4f2b-96c6-c121d573c170 status: 404 Not Found code: 404 duration: "" @@ -3431,9 +3431,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b60cee5c-b097-4855-a3ce-407f0bca70cc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1d12bd43-e3da-44cc-b352-4445e6ca2172 method: DELETE response: body: "" @@ -3441,7 +3441,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 20 Oct 2023 14:20:03 GMT + - Fri, 27 Oct 2023 07:51:33 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3451,7 +3451,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b39d297-8f63-48b5-b24a-f09b675dd741 + - d3fbf49d-911d-4deb-97cc-b8b65d4bddad status: 204 No Content code: 204 duration: "" @@ -3460,9 +3460,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a7fc3d66-e78d-4d61-ae45-7635df20d8cd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/81b984cc-a939-4be6-a09d-1f2913f5844d method: GET response: body: '{"message":"lbs not Found"}' @@ -3474,7 +3474,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:06 GMT + - Fri, 27 Oct 2023 07:51:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3484,7 +3484,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4c75966-1fa6-42ef-bc79-565108f787ab + - 6eda2e5e-0dc8-4ad9-ba19-5fbc9dc2d641 status: 404 Not Found code: 404 duration: "" @@ -3493,9 +3493,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a7fc3d66-e78d-4d61-ae45-7635df20d8cd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/81b984cc-a939-4be6-a09d-1f2913f5844d method: GET response: body: '{"message":"lbs not Found"}' @@ -3507,7 +3507,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:06 GMT + - Fri, 27 Oct 2023 07:51:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3517,7 +3517,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d698c91-7d77-4e18-84fb-cfe0b467e660 + - 53bb4853-686e-479e-97bc-60843bc83fc8 status: 404 Not Found code: 404 duration: "" @@ -3526,12 +3526,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/11059644-d3c3-4d95-bdc3-4b41c4e2b52d method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.100301Z","gateway_networks":[],"id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","ip":{"address":"51.15.139.125","created_at":"2023-10-20T14:18:26.967221Z","gateway_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","id":"f5ad4bfe-5f76-48e3-bfc9-fe61c59d6b56","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"125-139-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.967221Z","zone":"fr-par-1"},"is_legacy":true,"name":"tf-test-public-gw","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:38.010140Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T07:49:58.005592Z","gateway_networks":[],"id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","ip":{"address":"51.15.203.117","created_at":"2023-10-27T07:49:57.850232Z","gateway_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","id":"08e1a5d6-e11f-445d-896f-f9f5884517f7","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"117-203-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T07:49:57.850232Z","zone":"fr-par-1"},"is_legacy":true,"name":"tf-test-public-gw","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T07:50:08.312724Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "979" @@ -3540,7 +3540,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:06 GMT + - Fri, 27 Oct 2023 07:51:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3550,7 +3550,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0428fcc8-2d4f-408c-be8d-092c3454df7c + - baa58695-2808-47c7-ab33-d90f2f057886 status: 200 OK code: 200 duration: "" @@ -3559,21 +3559,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/f8576741-b282-4830-9813-a6b028e3f0ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/534c546e-f2a8-44f2-8b89-86559c0307ea method: GET response: - body: '{"id":"f8576741-b282-4830-9813-a6b028e3f0ca","ip_address":"51.159.11.48","lb_id":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-11-48.lb.fr-par.scw.cloud","zone":"fr-par-1"}' + body: '{"id":"534c546e-f2a8-44f2-8b89-86559c0307ea","ip_address":"51.158.58.116","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-158-58-116.lb.fr-par.scw.cloud","zone":"fr-par-1"}' headers: Content-Length: - - "283" + - "285" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:06 GMT + - Fri, 27 Oct 2023 07:51:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3583,7 +3583,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90530e31-6c0c-493e-ba8e-8f593f47bebd + - 4464205c-3929-4306-b5a4-05c736b7e3d3 status: 200 OK code: 200 duration: "" @@ -3592,9 +3592,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56?cleanup_dhcp=false + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/11059644-d3c3-4d95-bdc3-4b41c4e2b52d?cleanup_dhcp=false method: DELETE response: body: "" @@ -3604,7 +3604,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:06 GMT + - Fri, 27 Oct 2023 07:51:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3614,7 +3614,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2776055-e076-458e-a00e-bdd5561c8f86 + - e12ed628-d5ca-46c2-ba0d-cc09a734fe35 status: 204 No Content code: 204 duration: "" @@ -3623,12 +3623,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/11059644-d3c3-4d95-bdc3-4b41c4e2b52d method: GET response: - body: '{"message":"resource is not found","resource":"gateway","resource_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","type":"not_found"}' headers: Content-Length: - "128" @@ -3637,7 +3637,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:06 GMT + - Fri, 27 Oct 2023 07:51:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3647,7 +3647,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6cacd2c-26df-40fc-b621-671fee73de69 + - ed4969d5-4125-4bd8-a09b-be5a12d4fafe status: 404 Not Found code: 404 duration: "" @@ -3656,9 +3656,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/f5ad4bfe-5f76-48e3-bfc9-fe61c59d6b56 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/534c546e-f2a8-44f2-8b89-86559c0307ea method: DELETE response: body: "" @@ -3668,7 +3668,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:06 GMT + - Fri, 27 Oct 2023 07:51:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3678,7 +3678,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f969c6d-82a1-42dc-bca7-dd6605e5a044 + - af9e64ec-8447-49c6-940e-55fc404edeb2 status: 204 No Content code: 204 duration: "" @@ -3687,9 +3687,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/f8576741-b282-4830-9813-a6b028e3f0ca + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6258f488-3864-4a3b-b3c2-9d9840ed4a45 method: DELETE response: body: "" @@ -3699,7 +3699,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:06 GMT + - Fri, 27 Oct 2023 07:51:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3709,7 +3709,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c124e6b-8f6e-4971-bee3-25b654fb27a7 + - 80e9cc86-c389-4f1b-9429-23a88ef8610a status: 204 No Content code: 204 duration: "" @@ -3718,9 +3718,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/487c2354-24bb-4b17-bf88-0d918610cea9 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/08e1a5d6-e11f-445d-896f-f9f5884517f7 method: DELETE response: body: "" @@ -3730,7 +3730,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:06 GMT + - Fri, 27 Oct 2023 07:51:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3740,7 +3740,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fc3b11e-d819-428b-86cf-a80b15a8b3e7 + - 6cdaf7d7-72fb-40c0-8367-b56fa5b000d2 status: 204 No Content code: 204 duration: "" @@ -3749,12 +3749,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c8146d64-b475-4a8d-a443-e01e6deb21c7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4eaf5234-02df-4ace-a409-e1f470ea1cb8 method: GET response: - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c8146d64-b475-4a8d-a443-e01e6deb21c7","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4eaf5234-02df-4ace-a409-e1f470ea1cb8","type":"not_found"}' headers: Content-Length: - "143" @@ -3763,7 +3763,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:06 GMT + - Fri, 27 Oct 2023 07:51:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3773,7 +3773,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe9f43d7-5ed4-41ec-a5b6-4512fda38845 + - 65ffb653-1941-41f3-93eb-613f01ccee8a status: 404 Not Found code: 404 duration: "" @@ -3782,9 +3782,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a7fc3d66-e78d-4d61-ae45-7635df20d8cd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/81b984cc-a939-4be6-a09d-1f2913f5844d method: GET response: body: '{"message":"lbs not Found"}' @@ -3796,7 +3796,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:06 GMT + - Fri, 27 Oct 2023 07:51:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3806,7 +3806,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5d741da-eab3-4912-ade9-0ab0471a61d5 + - 73b0f12d-8e83-40af-8a48-fe81a69a5e37 status: 404 Not Found code: 404 duration: "" @@ -3815,9 +3815,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a7fc3d66-e78d-4d61-ae45-7635df20d8cd + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/81b984cc-a939-4be6-a09d-1f2913f5844d method: GET response: body: '{"message":"lbs not Found"}' @@ -3829,7 +3829,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:06 GMT + - Fri, 27 Oct 2023 07:51:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3839,7 +3839,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1504ee79-712e-49d7-807d-166f4b6aa494 + - b95647d5-9d7d-42b3-956c-fb73fb9625ce status: 404 Not Found code: 404 duration: "" @@ -3848,9 +3848,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/f8576741-b282-4830-9813-a6b028e3f0ca + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/534c546e-f2a8-44f2-8b89-86559c0307ea method: GET response: body: '{"message":"ips not Found"}' @@ -3862,7 +3862,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:06 GMT + - Fri, 27 Oct 2023 07:51:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3872,7 +3872,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efc8011a-4366-427f-be8e-9997c3893792 + - 48b4d838-d93f-476a-bd74-f0d854c1d992 status: 404 Not Found code: 404 duration: "" @@ -3881,12 +3881,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/538d6444-553e-46f3-9635-d08306cd5512 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/9d22e710-2b17-439c-bc74-0aaece0025c1 method: GET response: - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"538d6444-553e-46f3-9635-d08306cd5512","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"9d22e710-2b17-439c-bc74-0aaece0025c1","type":"not_found"}' headers: Content-Length: - "136" @@ -3895,7 +3895,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:07 GMT + - Fri, 27 Oct 2023 07:51:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3905,7 +3905,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65edf39b-c0ab-4dff-920d-dd181be80c47 + - 2e430c13-5c6d-4773-8f28-d9bdfb7894b6 status: 404 Not Found code: 404 duration: "" @@ -3914,12 +3914,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/487c2354-24bb-4b17-bf88-0d918610cea9 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6258f488-3864-4a3b-b3c2-9d9840ed4a45 method: GET response: - body: '{"message":"resource is not found","resource":"private_network","resource_id":"487c2354-24bb-4b17-bf88-0d918610cea9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"private_network","resource_id":"6258f488-3864-4a3b-b3c2-9d9840ed4a45","type":"not_found"}' headers: Content-Length: - "136" @@ -3928,7 +3928,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:07 GMT + - Fri, 27 Oct 2023 07:51:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3938,7 +3938,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c1ee570-57d9-4263-b902-fc5cde5d2775 + - 6846453b-4b76-4489-a964-d31b4f20e298 status: 404 Not Found code: 404 duration: "" @@ -3947,12 +3947,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/77bc134a-7df0-4cd8-beae-9bb95127fbff + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/08a8311b-adb1-49b3-96ff-c011ee058db5 method: GET response: - body: '{"message":"resource is not found","resource":"dhcp","resource_id":"77bc134a-7df0-4cd8-beae-9bb95127fbff","type":"not_found"}' + body: '{"message":"resource is not found","resource":"dhcp","resource_id":"08a8311b-adb1-49b3-96ff-c011ee058db5","type":"not_found"}' headers: Content-Length: - "125" @@ -3961,7 +3961,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:07 GMT + - Fri, 27 Oct 2023 07:51:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3971,7 +3971,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b5b68d4-43df-49f8-8165-71534a314bb3 + - 7e2617a9-cc74-41a9-ba92-cc301c439b0e status: 404 Not Found code: 404 duration: "" @@ -3980,12 +3980,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/11059644-d3c3-4d95-bdc3-4b41c4e2b52d method: GET response: - body: '{"message":"resource is not found","resource":"gateway","resource_id":"4edd7529-3f3f-4cb2-8f09-6e9fef5a5d56","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"11059644-d3c3-4d95-bdc3-4b41c4e2b52d","type":"not_found"}' headers: Content-Length: - "128" @@ -3994,7 +3994,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:07 GMT + - Fri, 27 Oct 2023 07:51:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4004,7 +4004,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73068d2b-816f-4c40-9fae-230b82b2779a + - 363f6e98-d386-4447-b447-3065fe81ac93 status: 404 Not Found code: 404 duration: "" @@ -4013,12 +4013,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/f5ad4bfe-5f76-48e3-bfc9-fe61c59d6b56 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/08e1a5d6-e11f-445d-896f-f9f5884517f7 method: GET response: - body: '{"message":"resource is not found","resource":"ip","resource_id":"f5ad4bfe-5f76-48e3-bfc9-fe61c59d6b56","type":"not_found"}' + body: '{"message":"resource is not found","resource":"ip","resource_id":"08e1a5d6-e11f-445d-896f-f9f5884517f7","type":"not_found"}' headers: Content-Length: - "123" @@ -4027,7 +4027,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:07 GMT + - Fri, 27 Oct 2023 07:51:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4037,7 +4037,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36de4dd8-58bb-4120-9ca9-31ca2c76b2e7 + - 45c1bd3c-ad42-4042-9fed-dda74c7846a2 status: 404 Not Found code: 404 duration: "" diff --git a/scaleway/testdata/vpc-public-gateway-dhcp-entry-basic.cassette.yaml b/scaleway/testdata/vpc-public-gateway-dhcp-entry-basic.cassette.yaml index 6a9b35221f..8fdd50caaa 100644 --- a/scaleway/testdata/vpc-public-gateway-dhcp-entry-basic.cassette.yaml +++ b/scaleway/testdata/vpc-public-gateway-dhcp-entry-basic.cassette.yaml @@ -2,18 +2,18 @@ version: 1 interactions: - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"192.168.1.0/24","address":null,"pool_low":null,"pool_high":null,"enable_dynamic":null,"valid_lifetime":null,"renew_timer":null,"rebind_timer":null,"push_default_route":null,"push_dns_server":null,"dns_servers_override":null,"dns_search":null,"dns_local_name":null}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"192.168.1.0/24","address":null,"pool_low":null,"pool_high":null,"enable_dynamic":null,"valid_lifetime":null,"renew_timer":null,"rebind_timer":null,"push_default_route":null,"push_dns_server":null,"dns_servers_override":null,"dns_search":null,"dns_local_name":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps method: POST response: - body: '{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"}' headers: Content-Length: - "586" @@ -22,7 +22,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:54:49 GMT + - Fri, 27 Oct 2023 08:47:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4619d9cf-ba11-46a2-94bb-3626ad37d1c1 + - 503ea07f-ef15-45db-b71a-9662ba7a3b10 status: 200 OK code: 200 duration: "" @@ -41,12 +41,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/4a889438-daf1-417e-aee4-996c8b27ccfc + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/02108c84-3b51-42bf-ab0e-80a31d16c2b2 method: GET response: - body: '{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"}' headers: Content-Length: - "586" @@ -55,7 +55,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:54:49 GMT + - Fri, 27 Oct 2023 08:47:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,23 +65,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc768a7b-2265-440f-8d1a-cf6f83bd1e7e + - cf991656-496e-4c27-9bc6-387e71f6add1 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":null}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips method: POST response: - body: '{"address":"51.158.65.159","created_at":"2023-10-20T14:54:49.962464Z","gateway_id":null,"id":"f5a1fd31-4400-4fa1-8432-b312cfd012cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"159-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:54:49.962464Z","zone":"fr-par-1"}' + body: '{"address":"212.47.226.36","created_at":"2023-10-27T08:47:27.363624Z","gateway_id":null,"id":"62af1417-86bf-4d31-b332-2062147923d9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"36-226-47-212.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:47:27.363624Z","zone":"fr-par-1"}' headers: Content-Length: - "367" @@ -90,7 +90,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:54:49 GMT + - Fri, 27 Oct 2023 08:47:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,30 +100,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93813c1c-d75a-4c47-b07f-cdae2b2d59c5 + - 0491a363-06ca-4c07-9f81-89363c91843d status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"name":"pn_test_network","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null,"subnets":null,"vpc_id":null}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/f5a1fd31-4400-4fa1-8432-b312cfd012cd - method: GET + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: - body: '{"address":"51.158.65.159","created_at":"2023-10-20T14:54:49.962464Z","gateway_id":null,"id":"f5a1fd31-4400-4fa1-8432-b312cfd012cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"159-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:54:49.962464Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T08:47:26.715298Z","dhcp_enabled":true,"id":"1854988a-8aaf-45a3-a953-74a043852df4","name":"pn_test_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T08:47:26.715298Z","id":"dac82a5a-57e1-4e15-b520-4ceef31120e4","subnet":"172.16.60.0/22","updated_at":"2023-10-27T08:47:26.715298Z"},{"created_at":"2023-10-27T08:47:26.715298Z","id":"5c74cca7-5797-46e6-a24b-4ae703ad67cd","subnet":"fd46:78ab:30b8:6031::/64","updated_at":"2023-10-27T08:47:26.715298Z"}],"tags":[],"updated_at":"2023-10-27T08:47:26.715298Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "367" + - "716" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:54:50 GMT + - Fri, 27 Oct 2023 08:47:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,32 +135,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0102eb80-500a-4ccd-9480-f1d6f055cd59 + - d5cfe716-b278-4ee2-b6d7-88e6a73dc71c status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"foobar","tags":null,"type":"VPC-GW-S","upstream_dns_servers":null,"ip_id":"f5a1fd31-4400-4fa1-8432-b312cfd012cd","enable_smtp":false,"enable_bastion":false,"bastion_port":null}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways - method: POST + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/62af1417-86bf-4d31-b332-2062147923d9 + method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:54:50.160667Z","gateway_networks":[],"id":"86efc927-4816-4b90-b1b0-b184079e15ed","ip":{"address":"51.158.65.159","created_at":"2023-10-20T14:54:49.962464Z","gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"f5a1fd31-4400-4fa1-8432-b312cfd012cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"159-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:54:49.962464Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:54:50.160667Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' + body: '{"address":"212.47.226.36","created_at":"2023-10-27T08:47:27.363624Z","gateway_id":null,"id":"62af1417-86bf-4d31-b332-2062147923d9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"36-226-47-212.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:47:27.363624Z","zone":"fr-par-1"}' headers: Content-Length: - - "969" + - "367" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:54:50 GMT + - Fri, 27 Oct 2023 08:47:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -168,7 +168,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65ef88f3-21bc-412b-a6dc-42889b3b2803 + - 6ba39664-3399-4284-8979-bba405fe6e2f status: 200 OK code: 200 duration: "" @@ -177,21 +177,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/86efc927-4816-4b90-b1b0-b184079e15ed + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1854988a-8aaf-45a3-a953-74a043852df4 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:54:50.160667Z","gateway_networks":[],"id":"86efc927-4816-4b90-b1b0-b184079e15ed","ip":{"address":"51.158.65.159","created_at":"2023-10-20T14:54:49.962464Z","gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"f5a1fd31-4400-4fa1-8432-b312cfd012cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"159-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:54:49.962464Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:54:50.160667Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T08:47:26.715298Z","dhcp_enabled":true,"id":"1854988a-8aaf-45a3-a953-74a043852df4","name":"pn_test_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T08:47:26.715298Z","id":"dac82a5a-57e1-4e15-b520-4ceef31120e4","subnet":"172.16.60.0/22","updated_at":"2023-10-27T08:47:26.715298Z"},{"created_at":"2023-10-27T08:47:26.715298Z","id":"5c74cca7-5797-46e6-a24b-4ae703ad67cd","subnet":"fd46:78ab:30b8:6031::/64","updated_at":"2023-10-27T08:47:26.715298Z"}],"tags":[],"updated_at":"2023-10-27T08:47:26.715298Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "969" + - "716" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:54:50 GMT + - Fri, 27 Oct 2023 08:47:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -201,32 +201,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3fd9b426-0017-4df4-8101-5b1baad9513d + - 19f75d30-2725-464d-90d8-6e7ae4d2339a status: 200 OK code: 200 duration: "" - request: - body: '{"name":"pn_test_network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":null,"subnets":null,"vpc_id":null}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"foobar","tags":null,"type":"VPC-GW-S","upstream_dns_servers":null,"ip_id":"62af1417-86bf-4d31-b332-2062147923d9","enable_smtp":false,"enable_bastion":false,"bastion_port":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways method: POST response: - body: '{"created_at":"2023-10-20T14:54:49.394486Z","dhcp_enabled":true,"id":"4acd338e-6465-4dc3-a997-5e31625a283c","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T14:54:49.394486Z","id":"3c7b7e99-01e2-40cd-84b1-cf707f6d207c","subnet":"172.16.80.0/22","updated_at":"2023-10-20T14:54:49.394486Z"},{"created_at":"2023-10-20T14:54:49.394486Z","id":"2dc34e55-fd33-4619-bbb1-295b32ad4c9f","subnet":"fd5f:519c:6d46:b485::/64","updated_at":"2023-10-20T14:54:49.394486Z"}],"tags":[],"updated_at":"2023-10-20T14:54:49.394486Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:47:27.548696Z","gateway_networks":[],"id":"2a74d20c-a2cd-4078-b58b-93db631444e3","ip":{"address":"212.47.226.36","created_at":"2023-10-27T08:47:27.363624Z","gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"62af1417-86bf-4d31-b332-2062147923d9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"36-226-47-212.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:47:27.363624Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:47:27.548696Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' headers: Content-Length: - - "716" + - "969" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:54:50 GMT + - Fri, 27 Oct 2023 08:47:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -236,7 +236,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 419cb614-ac33-4943-bd22-02ca6540136d + - 6681d983-1c98-44b8-a99a-6b98701f404f status: 200 OK code: 200 duration: "" @@ -245,21 +245,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4acd338e-6465-4dc3-a997-5e31625a283c + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=created_at_asc&type=instance_local&zone=fr-par-1 method: GET response: - body: '{"created_at":"2023-10-20T14:54:49.394486Z","dhcp_enabled":true,"id":"4acd338e-6465-4dc3-a997-5e31625a283c","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T14:54:49.394486Z","id":"3c7b7e99-01e2-40cd-84b1-cf707f6d207c","subnet":"172.16.80.0/22","updated_at":"2023-10-20T14:54:49.394486Z"},{"created_at":"2023-10-20T14:54:49.394486Z","id":"2dc34e55-fd33-4619-bbb1-295b32ad4c9f","subnet":"fd5f:519c:6d46:b485::/64","updated_at":"2023-10-20T14:54:49.394486Z"}],"tags":[],"updated_at":"2023-10-20T14:54:49.394486Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G"],"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","label":"ubuntu_focal","type":"unknown_type","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"10b2d3c3-bfa7-42d4-910b-389e95f95ccb","label":"ubuntu_focal","type":"unknown_type","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "716" + - "1256" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:54:50 GMT + - Fri, 27 Oct 2023 08:47:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -269,7 +269,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4794dc92-2454-4bfb-be66-8755e18c8bd6 + - c7b7350b-083e-4d66-829e-4552182db7b9 status: 200 OK code: 200 duration: "" @@ -278,21 +278,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=created_at_asc&type=instance_local&zone=fr-par-1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G"],"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","label":"ubuntu_focal","type":"unknown_type","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"10b2d3c3-bfa7-42d4-910b-389e95f95ccb","label":"ubuntu_focal","type":"unknown_type","zone":"fr-par-1"}],"total_count":2}' + body: '{"servers":{"DEV1-L":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-VIZ":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1,"mig_profile":null,"monthly_price":72,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":1,"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"START1-M":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"START1-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"START1-XS":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":25000000000}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}}}}' headers: Content-Length: - - "1256" + - "38421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:54:50 GMT + - Fri, 27 Oct 2023 08:47:27 GMT + Link: + - ; rel="next",; + rel="last" Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -302,7 +305,9 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1bfd559a-a9b6-47ad-9f39-40b444a8d7a6 + - e602146f-280e-40d6-bc86-d715ed35286e + X-Total-Count: + - "56" status: 200 OK code: 200 duration: "" @@ -311,24 +316,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2a74d20c-a2cd-4078-b58b-93db631444e3 method: GET response: - body: '{"servers":{"DEV1-L":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-VIZ":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1,"mig_profile":null,"monthly_price":72,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":1,"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"START1-M":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"START1-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"START1-XS":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":25000000000}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}}}}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:47:27.548696Z","gateway_networks":[],"id":"2a74d20c-a2cd-4078-b58b-93db631444e3","ip":{"address":"212.47.226.36","created_at":"2023-10-27T08:47:27.363624Z","gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"62af1417-86bf-4d31-b332-2062147923d9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"36-226-47-212.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:47:27.363624Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:47:27.605038Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "38421" + - "972" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:54:50 GMT - Link: - - ; rel="next",; - rel="last" + - Fri, 27 Oct 2023 08:47:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -338,9 +340,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 683003b4-5e3f-4f9d-9b82-c20b1e9ad121 - X-Total-Count: - - "56" + - 18098b58-ce8e-4742-ad05-7fb0b004a569 status: 200 OK code: 200 duration: "" @@ -349,7 +349,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET @@ -363,7 +363,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:54:50 GMT + - Fri, 27 Oct 2023 08:47:27 GMT Link: - ; rel="first",; rel="previous",; rel="last" @@ -376,42 +376,42 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5504035b-a13a-4cf0-b86b-3169b3b05cae + - 132fa58c-c177-4f7e-a508-44c6157cd4ac X-Total-Count: - "56" status: 200 OK code: 200 duration: "" - request: - body: '{"name":"tf-srv-competent-herschel","dynamic_ip_required":false,"routed_ip_enabled":false,"commercial_type":"DEV1-S","image":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-srv-festive-villani","dynamic_ip_required":false,"routed_ip_enabled":false,"commercial_type":"DEV1-S","image":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:54:51.156669+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-competent-herschel","id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:47:27.847300+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-festive-villani","id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:b3:83","maintenances":[],"modification_date":"2023-10-20T14:54:51.156669+00:00","name":"tf-srv-competent-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:54:51.156669+00:00","export_uri":null,"id":"b1e88085-dd63-4615-bd5e-e0290130a466","modification_date":"2023-10-20T14:54:51.156669+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","name":"tf-srv-competent-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:bb:d3","maintenances":[],"modification_date":"2023-10-27T08:47:27.847300+00:00","name":"tf-srv-festive-villani","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:47:27.847300+00:00","export_uri":null,"id":"8ca2f20f-d9c1-4c2a-a801-f3394397d703","modification_date":"2023-10-27T08:47:27.847300+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","name":"tf-srv-festive-villani"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2657" + - "2648" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:54:51 GMT + - Fri, 27 Oct 2023 08:47:28 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -421,7 +421,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91f769cf-ccd9-4e06-b7e9-3eb4c9906a99 + - e8829c59-b47c-4daa-81ba-98b7f95a3365 status: 201 Created code: 201 duration: "" @@ -430,27 +430,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375 method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:54:51.156669+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-competent-herschel","id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:47:27.847300+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-festive-villani","id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:b3:83","maintenances":[],"modification_date":"2023-10-20T14:54:51.156669+00:00","name":"tf-srv-competent-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:54:51.156669+00:00","export_uri":null,"id":"b1e88085-dd63-4615-bd5e-e0290130a466","modification_date":"2023-10-20T14:54:51.156669+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","name":"tf-srv-competent-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:bb:d3","maintenances":[],"modification_date":"2023-10-27T08:47:27.847300+00:00","name":"tf-srv-festive-villani","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:47:27.847300+00:00","export_uri":null,"id":"8ca2f20f-d9c1-4c2a-a801-f3394397d703","modification_date":"2023-10-27T08:47:27.847300+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","name":"tf-srv-festive-villani"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2657" + - "2648" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:54:52 GMT + - Fri, 27 Oct 2023 08:47:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -460,7 +460,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6510e521-a6d7-471b-9142-d4328ecc8f85 + - 364fc0fc-1ee3-43a4-ba05-7e75e5c43743 status: 200 OK code: 200 duration: "" @@ -469,27 +469,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375 method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:54:51.156669+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-competent-herschel","id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:47:27.847300+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-festive-villani","id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:b3:83","maintenances":[],"modification_date":"2023-10-20T14:54:51.156669+00:00","name":"tf-srv-competent-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:54:51.156669+00:00","export_uri":null,"id":"b1e88085-dd63-4615-bd5e-e0290130a466","modification_date":"2023-10-20T14:54:51.156669+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","name":"tf-srv-competent-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:bb:d3","maintenances":[],"modification_date":"2023-10-27T08:47:27.847300+00:00","name":"tf-srv-festive-villani","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:47:27.847300+00:00","export_uri":null,"id":"8ca2f20f-d9c1-4c2a-a801-f3394397d703","modification_date":"2023-10-27T08:47:27.847300+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","name":"tf-srv-festive-villani"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2657" + - "2648" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:54:52 GMT + - Fri, 27 Oct 2023 08:47:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -499,7 +499,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f14579b2-99d6-49db-a8ab-814e1ad39f8e + - 7052b7aa-55a4-4ead-86dd-cc7df4a495be status: 200 OK code: 200 duration: "" @@ -510,12 +510,12 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/action method: POST response: - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/action","href_result":"/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","id":"f3f127b8-ef99-4d84-a848-c5f5e11a22c2","started_at":"2023-10-20T14:54:52.928112+00:00","status":"pending","terminated_at":null}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/action","href_result":"/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375","id":"e0a96a75-6485-4679-8a8f-b5d8cec11a62","started_at":"2023-10-27T08:47:29.050710+00:00","status":"pending","terminated_at":null}}' headers: Content-Length: - "322" @@ -524,9 +524,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:54:52 GMT + - Fri, 27 Oct 2023 08:47:29 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/f3f127b8-ef99-4d84-a848-c5f5e11a22c2 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e0a96a75-6485-4679-8a8f-b5d8cec11a62 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -536,7 +536,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c42347b8-971b-4e95-8ace-a50163b9fd48 + - fef518da-1469-4d54-8d81-ba2e989447cd status: 202 Accepted code: 202 duration: "" @@ -545,27 +545,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:54:51.156669+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-competent-herschel","id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:47:27.847300+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-festive-villani","id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:b3:83","maintenances":[],"modification_date":"2023-10-20T14:54:52.272439+00:00","name":"tf-srv-competent-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:54:51.156669+00:00","export_uri":null,"id":"b1e88085-dd63-4615-bd5e-e0290130a466","modification_date":"2023-10-20T14:54:51.156669+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","name":"tf-srv-competent-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:bb:d3","maintenances":[],"modification_date":"2023-10-27T08:47:28.605963+00:00","name":"tf-srv-festive-villani","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:47:27.847300+00:00","export_uri":null,"id":"8ca2f20f-d9c1-4c2a-a801-f3394397d703","modification_date":"2023-10-27T08:47:27.847300+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","name":"tf-srv-festive-villani"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2679" + - "2670" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:54:53 GMT + - Fri, 27 Oct 2023 08:47:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -575,7 +575,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf92eca0-5065-49ec-b318-c25ba144be69 + - cd4bc4df-1646-4bce-9183-8aa92f737d85 status: 200 OK code: 200 duration: "" @@ -584,12 +584,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/86efc927-4816-4b90-b1b0-b184079e15ed + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2a74d20c-a2cd-4078-b58b-93db631444e3 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:54:50.160667Z","gateway_networks":[],"id":"86efc927-4816-4b90-b1b0-b184079e15ed","ip":{"address":"51.158.65.159","created_at":"2023-10-20T14:54:49.962464Z","gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"f5a1fd31-4400-4fa1-8432-b312cfd012cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"159-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:54:49.962464Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:54:50.944006Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:47:27.548696Z","gateway_networks":[],"id":"2a74d20c-a2cd-4078-b58b-93db631444e3","ip":{"address":"212.47.226.36","created_at":"2023-10-27T08:47:27.363624Z","gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"62af1417-86bf-4d31-b332-2062147923d9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"36-226-47-212.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:47:27.363624Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:47:28.205765Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "969" @@ -598,7 +598,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:54:55 GMT + - Fri, 27 Oct 2023 08:47:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -608,7 +608,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71054ee0-248f-4dbd-8397-e58a241a88f5 + - 641500ed-065d-4d30-8c66-22ca195067f4 status: 200 OK code: 200 duration: "" @@ -617,12 +617,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/86efc927-4816-4b90-b1b0-b184079e15ed + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2a74d20c-a2cd-4078-b58b-93db631444e3 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:54:50.160667Z","gateway_networks":[],"id":"86efc927-4816-4b90-b1b0-b184079e15ed","ip":{"address":"51.158.65.159","created_at":"2023-10-20T14:54:49.962464Z","gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"f5a1fd31-4400-4fa1-8432-b312cfd012cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"159-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:54:49.962464Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:54:50.944006Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:47:27.548696Z","gateway_networks":[],"id":"2a74d20c-a2cd-4078-b58b-93db631444e3","ip":{"address":"212.47.226.36","created_at":"2023-10-27T08:47:27.363624Z","gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"62af1417-86bf-4d31-b332-2062147923d9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"36-226-47-212.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:47:27.363624Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:47:28.205765Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "969" @@ -631,7 +631,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:54:55 GMT + - Fri, 27 Oct 2023 08:47:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -641,7 +641,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 108030e5-1c61-4f58-9388-e31bc0d42e6e + - 73e05b98-fedb-4b57-b64b-a55a0e32d664 status: 200 OK code: 200 duration: "" @@ -650,12 +650,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/86efc927-4816-4b90-b1b0-b184079e15ed + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2a74d20c-a2cd-4078-b58b-93db631444e3 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:54:50.160667Z","gateway_networks":[],"id":"86efc927-4816-4b90-b1b0-b184079e15ed","ip":{"address":"51.158.65.159","created_at":"2023-10-20T14:54:49.962464Z","gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"f5a1fd31-4400-4fa1-8432-b312cfd012cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"159-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:54:49.962464Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:54:50.944006Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:47:27.548696Z","gateway_networks":[],"id":"2a74d20c-a2cd-4078-b58b-93db631444e3","ip":{"address":"212.47.226.36","created_at":"2023-10-27T08:47:27.363624Z","gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"62af1417-86bf-4d31-b332-2062147923d9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"36-226-47-212.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:47:27.363624Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:47:28.205765Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "969" @@ -664,7 +664,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:54:55 GMT + - Fri, 27 Oct 2023 08:47:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -674,7 +674,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 044b4841-018e-4583-9afd-3b11672f091a + - 59c05258-37d4-4962-ad8b-29877c82e240 status: 200 OK code: 200 duration: "" @@ -683,27 +683,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:54:51.156669+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-competent-herschel","id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:47:27.847300+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-festive-villani","id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1902","node_id":"12","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b3:83","maintenances":[],"modification_date":"2023-10-20T14:54:52.272439+00:00","name":"tf-srv-competent-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.154.23","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:54:51.156669+00:00","export_uri":null,"id":"b1e88085-dd63-4615-bd5e-e0290130a466","modification_date":"2023-10-20T14:54:51.156669+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","name":"tf-srv-competent-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"402","node_id":"2","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bb:d3","maintenances":[],"modification_date":"2023-10-27T08:47:28.605963+00:00","name":"tf-srv-festive-villani","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.14.3","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:47:27.847300+00:00","export_uri":null,"id":"8ca2f20f-d9c1-4c2a-a801-f3394397d703","modification_date":"2023-10-27T08:47:27.847300+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","name":"tf-srv-festive-villani"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2789" + - "2776" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:54:58 GMT + - Fri, 27 Oct 2023 08:47:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -713,23 +713,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bae3cffc-414c-429e-8dd1-0f534a7ea7dd + - efc238ac-80d8-4619-a6dc-7b1e40fd3396 status: 200 OK code: 200 duration: "" - request: - body: '{"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","enable_masquerade":true,"enable_dhcp":true,"dhcp_id":"4a889438-daf1-417e-aee4-996c8b27ccfc"}' + body: '{"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","enable_masquerade":true,"enable_dhcp":true,"dhcp_id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks method: POST response: - body: '{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":null,"private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"created","updated_at":"2023-10-20T14:54:58.970489Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":null,"private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"created","updated_at":"2023-10-27T08:47:34.299608Z","zone":"fr-par-1"}' headers: Content-Length: - "983" @@ -738,7 +738,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:54:59 GMT + - Fri, 27 Oct 2023 08:47:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -748,7 +748,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51bd77ef-120c-450f-be1d-1ee2fb2a79d8 + - c92dacfe-95a9-4d35-9ec0-37797531ae53 status: 200 OK code: 200 duration: "" @@ -757,12 +757,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/86efc927-4816-4b90-b1b0-b184079e15ed + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2a74d20c-a2cd-4078-b58b-93db631444e3 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:54:50.160667Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":null,"private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"created","updated_at":"2023-10-20T14:54:58.970489Z","zone":"fr-par-1"}],"id":"86efc927-4816-4b90-b1b0-b184079e15ed","ip":{"address":"51.158.65.159","created_at":"2023-10-20T14:54:49.962464Z","gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"f5a1fd31-4400-4fa1-8432-b312cfd012cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"159-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:54:49.962464Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:54:59.412186Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:47:27.548696Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":null,"private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"created","updated_at":"2023-10-27T08:47:34.299608Z","zone":"fr-par-1"}],"id":"2a74d20c-a2cd-4078-b58b-93db631444e3","ip":{"address":"212.47.226.36","created_at":"2023-10-27T08:47:27.363624Z","gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"62af1417-86bf-4d31-b332-2062147923d9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"36-226-47-212.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:47:27.363624Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:47:34.468378Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "1955" @@ -771,7 +771,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:54:59 GMT + - Fri, 27 Oct 2023 08:47:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -781,7 +781,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53aa37ca-389c-489c-b35b-93fa55a033ee + - 9ec88136-cfd5-464b-9246-371670424ea1 status: 200 OK code: 200 duration: "" @@ -790,27 +790,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2a74d20c-a2cd-4078-b58b-93db631444e3 method: GET response: - body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON - scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:54:51.156669+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-competent-herschel","id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1902","node_id":"12","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b3:83","maintenances":[],"modification_date":"2023-10-20T14:54:52.272439+00:00","name":"tf-srv-competent-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.154.23","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:54:51.156669+00:00","export_uri":null,"id":"b1e88085-dd63-4615-bd5e-e0290130a466","modification_date":"2023-10-20T14:54:51.156669+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","name":"tf-srv-competent-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:47:27.548696Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":"02:00:00:14:73:F9","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"ready","updated_at":"2023-10-27T08:47:36.798169Z","zone":"fr-par-1"}],"id":"2a74d20c-a2cd-4078-b58b-93db631444e3","ip":{"address":"212.47.226.36","created_at":"2023-10-27T08:47:27.363624Z","gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"62af1417-86bf-4d31-b332-2062147923d9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"36-226-47-212.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:47:27.363624Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:47:36.899931Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "2789" + - "1964" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:03 GMT + - Fri, 27 Oct 2023 08:47:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -820,7 +814,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82c9d4bd-097e-432c-ad79-9b60da0566e8 + - 9afb7a18-6d36-4774-9390-6d85f4bbd7ec status: 200 OK code: 200 duration: "" @@ -829,21 +823,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/86efc927-4816-4b90-b1b0-b184079e15ed + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:54:50.160667Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":"02:00:00:14:58:1F","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"ready","updated_at":"2023-10-20T14:55:01.760066Z","zone":"fr-par-1"}],"id":"86efc927-4816-4b90-b1b0-b184079e15ed","ip":{"address":"51.158.65.159","created_at":"2023-10-20T14:54:49.962464Z","gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"f5a1fd31-4400-4fa1-8432-b312cfd012cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"159-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:54:49.962464Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:55:01.868988Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON + scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:47:27.847300+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-festive-villani","id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"402","node_id":"2","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bb:d3","maintenances":[],"modification_date":"2023-10-27T08:47:28.605963+00:00","name":"tf-srv-festive-villani","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.14.3","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:47:27.847300+00:00","export_uri":null,"id":"8ca2f20f-d9c1-4c2a-a801-f3394397d703","modification_date":"2023-10-27T08:47:27.847300+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","name":"tf-srv-festive-villani"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1964" + - "2776" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:04 GMT + - Fri, 27 Oct 2023 08:47:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -853,7 +853,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afa982b1-8f0e-4635-97da-03472c377006 + - 55998b5e-afa4-49da-a6f9-96cdf18ec036 status: 200 OK code: 200 duration: "" @@ -862,12 +862,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/49ebf11f-e3d8-4a04-ab76-3e1d78bde62c + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/efcbf5b2-0993-4c1f-8594-9cda8035bdcd method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":"02:00:00:14:58:1F","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"ready","updated_at":"2023-10-20T14:55:01.760066Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":"02:00:00:14:73:F9","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"ready","updated_at":"2023-10-27T08:47:36.798169Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -876,7 +876,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:04 GMT + - Fri, 27 Oct 2023 08:47:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -886,7 +886,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b00dbb8b-a4f5-424d-a598-8a7f15891d37 + - f4607296-11a3-4ff4-88d1-50c43ea10487 status: 200 OK code: 200 duration: "" @@ -895,12 +895,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/49ebf11f-e3d8-4a04-ab76-3e1d78bde62c + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/efcbf5b2-0993-4c1f-8594-9cda8035bdcd method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":"02:00:00:14:58:1F","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"ready","updated_at":"2023-10-20T14:55:01.760066Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":"02:00:00:14:73:F9","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"ready","updated_at":"2023-10-27T08:47:36.798169Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -909,7 +909,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:04 GMT + - Fri, 27 Oct 2023 08:47:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -919,7 +919,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22286160-0e79-433c-95f1-88ced51b8115 + - dd28f5f1-1e68-410e-96d1-b1c7dab7e69d status: 200 OK code: 200 duration: "" @@ -928,12 +928,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/86efc927-4816-4b90-b1b0-b184079e15ed + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2a74d20c-a2cd-4078-b58b-93db631444e3 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:54:50.160667Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":"02:00:00:14:58:1F","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"ready","updated_at":"2023-10-20T14:55:01.760066Z","zone":"fr-par-1"}],"id":"86efc927-4816-4b90-b1b0-b184079e15ed","ip":{"address":"51.158.65.159","created_at":"2023-10-20T14:54:49.962464Z","gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"f5a1fd31-4400-4fa1-8432-b312cfd012cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"159-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:54:49.962464Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:55:01.868988Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:47:27.548696Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":"02:00:00:14:73:F9","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"ready","updated_at":"2023-10-27T08:47:36.798169Z","zone":"fr-par-1"}],"id":"2a74d20c-a2cd-4078-b58b-93db631444e3","ip":{"address":"212.47.226.36","created_at":"2023-10-27T08:47:27.363624Z","gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"62af1417-86bf-4d31-b332-2062147923d9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"36-226-47-212.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:47:27.363624Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:47:36.899931Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "1964" @@ -942,7 +942,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:04 GMT + - Fri, 27 Oct 2023 08:47:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -952,7 +952,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0fb40e6e-b7dd-4c96-a1ce-a09a4a573843 + - bb70b352-751f-4db8-923e-048a972baade status: 200 OK code: 200 duration: "" @@ -961,12 +961,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/49ebf11f-e3d8-4a04-ab76-3e1d78bde62c + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/efcbf5b2-0993-4c1f-8594-9cda8035bdcd method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":"02:00:00:14:58:1F","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"ready","updated_at":"2023-10-20T14:55:01.760066Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":"02:00:00:14:73:F9","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"ready","updated_at":"2023-10-27T08:47:36.798169Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -975,46 +975,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:04 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 235ed7b8-5382-4d73-9464-baf257ec74d8 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop - terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23 - method: GET - response: - body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON - scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:54:51.156669+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-competent-herschel","id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1902","node_id":"12","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b3:83","maintenances":[],"modification_date":"2023-10-20T14:54:52.272439+00:00","name":"tf-srv-competent-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.154.23","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:54:51.156669+00:00","export_uri":null,"id":"b1e88085-dd63-4615-bd5e-e0290130a466","modification_date":"2023-10-20T14:54:51.156669+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","name":"tf-srv-competent-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2789" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 20 Oct 2023 14:55:09 GMT + - Fri, 27 Oct 2023 08:47:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1024,7 +985,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae414c2c-98d0-4fe5-a382-5420d2db95f9 + - 2c6b9f6f-eac4-4261-b329-2be5ec709b7e status: 200 OK code: 200 duration: "" @@ -1033,27 +994,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375 method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:54:51.156669+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-competent-herschel","id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:47:27.847300+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-festive-villani","id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1902","node_id":"12","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b3:83","maintenances":[],"modification_date":"2023-10-20T14:55:09.626445+00:00","name":"tf-srv-competent-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.154.23","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:54:51.156669+00:00","export_uri":null,"id":"b1e88085-dd63-4615-bd5e-e0290130a466","modification_date":"2023-10-20T14:54:51.156669+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","name":"tf-srv-competent-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"402","node_id":"2","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bb:d3","maintenances":[],"modification_date":"2023-10-27T08:47:41.052314+00:00","name":"tf-srv-festive-villani","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.14.3","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:47:27.847300+00:00","export_uri":null,"id":"8ca2f20f-d9c1-4c2a-a801-f3394397d703","modification_date":"2023-10-27T08:47:27.847300+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","name":"tf-srv-festive-villani"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2820" + - "2807" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:14 GMT + - Fri, 27 Oct 2023 08:47:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1063,7 +1024,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa161a7f-a750-4a89-b24f-a638a23443db + - 90d242c5-35f4-464c-9d12-19f43baea664 status: 200 OK code: 200 duration: "" @@ -1072,21 +1033,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/4acd338e-6465-4dc3-a997-5e31625a283c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1854988a-8aaf-45a3-a953-74a043852df4 method: GET response: - body: '{"created_at":"2023-10-20T14:54:49.394486Z","id":"4acd338e-6465-4dc3-a997-5e31625a283c","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":["192.168.1.0/24","fd5f:519c:6d46:b485::/64"],"tags":[],"updated_at":"2023-10-20T14:55:01.186016Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T08:47:26.715298Z","dhcp_enabled":true,"id":"1854988a-8aaf-45a3-a953-74a043852df4","name":"pn_test_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T08:47:26.715298Z","id":"dac82a5a-57e1-4e15-b520-4ceef31120e4","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:33.205868Z"},{"created_at":"2023-10-27T08:47:26.715298Z","id":"5c74cca7-5797-46e6-a24b-4ae703ad67cd","subnet":"fd46:78ab:30b8:6031::/64","updated_at":"2023-10-27T08:47:33.209532Z"}],"tags":[],"updated_at":"2023-10-27T08:47:36.373109Z","vpc_id":"e3d67c64-231a-4b03-80ca-c3ad723bcc19"}' headers: Content-Length: - - "358" + - "716" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:14 GMT + - Fri, 27 Oct 2023 08:47:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1096,7 +1057,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a606309-8554-42d9-a069-34df8ccb2e95 + - fab0544f-c3cc-4714-9328-57e2921f77b8 status: 200 OK code: 200 duration: "" @@ -1105,27 +1066,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375 method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:54:51.156669+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-competent-herschel","id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:47:27.847300+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-festive-villani","id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1902","node_id":"12","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b3:83","maintenances":[],"modification_date":"2023-10-20T14:55:09.626445+00:00","name":"tf-srv-competent-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.154.23","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:54:51.156669+00:00","export_uri":null,"id":"b1e88085-dd63-4615-bd5e-e0290130a466","modification_date":"2023-10-20T14:54:51.156669+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","name":"tf-srv-competent-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"402","node_id":"2","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bb:d3","maintenances":[],"modification_date":"2023-10-27T08:47:41.052314+00:00","name":"tf-srv-festive-villani","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.14.3","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:47:27.847300+00:00","export_uri":null,"id":"8ca2f20f-d9c1-4c2a-a801-f3394397d703","modification_date":"2023-10-27T08:47:27.847300+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","name":"tf-srv-festive-villani"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2820" + - "2807" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:14 GMT + - Fri, 27 Oct 2023 08:47:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1135,23 +1096,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 542150db-018b-42d7-b7c1-2cf429ffe8f7 + - 07037642-fc17-49b2-b778-0343ea2fa8e6 status: 200 OK code: 200 duration: "" - request: - body: '{"private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c"}' + body: '{"private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/private_nics method: POST response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:14.592601+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:47:44.938346+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1160,7 +1121,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:15 GMT + - Fri, 27 Oct 2023 08:47:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1170,7 +1131,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23217241-01fc-4eec-a82e-a765eef6487d + - 4d5d1dfe-b5eb-4a69-ad9b-d796d2e3002f status: 201 Created code: 201 duration: "" @@ -1179,12 +1140,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/private_nics/2ec5400d-73fa-4bbd-8672-f73c95eafab8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/private_nics/2512af22-d2d5-4413-91d3-dc46fdafc8ef method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:14.592601+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:47:44.938346+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1193,7 +1154,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:15 GMT + - Fri, 27 Oct 2023 08:47:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1203,7 +1164,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c348a74-451d-4b7d-bafd-8aefa2f8cca3 + - 1f225e5c-5adc-48ae-93ff-b4109f0a72d7 status: 200 OK code: 200 duration: "" @@ -1212,12 +1173,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/private_nics/2ec5400d-73fa-4bbd-8672-f73c95eafab8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/private_nics/2512af22-d2d5-4413-91d3-dc46fdafc8ef method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:15.410989+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:47:46.013664+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1226,7 +1187,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:20 GMT + - Fri, 27 Oct 2023 08:47:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1236,7 +1197,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f472468-b87f-42c9-803d-9178203d70ab + - dcd59a20-e790-47d6-b890-f81ce261e7dc status: 200 OK code: 200 duration: "" @@ -1245,12 +1206,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/private_nics/2ec5400d-73fa-4bbd-8672-f73c95eafab8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/private_nics/2512af22-d2d5-4413-91d3-dc46fdafc8ef method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:15.410989+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:47:46.013664+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1259,7 +1220,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:25 GMT + - Fri, 27 Oct 2023 08:47:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1269,7 +1230,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb206e83-ac9b-45a9-81c4-bcb5d046c306 + - beab11dc-724c-473f-8680-0a6c16ed3769 status: 200 OK code: 200 duration: "" @@ -1278,12 +1239,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/private_nics/2ec5400d-73fa-4bbd-8672-f73c95eafab8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/private_nics/2512af22-d2d5-4413-91d3-dc46fdafc8ef method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:15.410989+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:47:46.013664+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1292,7 +1253,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:30 GMT + - Fri, 27 Oct 2023 08:48:01 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1302,7 +1263,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d900ddae-c59c-4df3-80e3-1749c4f2689d + - a8c10bf9-1dd5-453f-8375-4254375bd616 status: 200 OK code: 200 duration: "" @@ -1311,12 +1272,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/private_nics/2ec5400d-73fa-4bbd-8672-f73c95eafab8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/private_nics/2512af22-d2d5-4413-91d3-dc46fdafc8ef method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:15.410989+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:47:46.013664+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1325,7 +1286,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:35 GMT + - Fri, 27 Oct 2023 08:48:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1335,7 +1296,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aebd6713-2c42-4888-aaee-84577542461e + - ec3a0593-9eff-4c16-b860-c74d0998e6d8 status: 200 OK code: 200 duration: "" @@ -1344,12 +1305,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/private_nics/2ec5400d-73fa-4bbd-8672-f73c95eafab8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/private_nics/2512af22-d2d5-4413-91d3-dc46fdafc8ef method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:15.410989+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:47:46.013664+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1358,7 +1319,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:40 GMT + - Fri, 27 Oct 2023 08:48:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1368,7 +1329,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ad4b1f8-6a36-41cd-917b-6dfc44e5b96a + - c9be9709-2ac0-4760-aebc-8a67f9dffd16 status: 200 OK code: 200 duration: "" @@ -1377,12 +1338,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/private_nics/2ec5400d-73fa-4bbd-8672-f73c95eafab8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/private_nics/2512af22-d2d5-4413-91d3-dc46fdafc8ef method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:15.410989+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:47:46.013664+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1391,7 +1352,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:45 GMT + - Fri, 27 Oct 2023 08:48:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1401,7 +1362,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a60d0db9-2d4c-4e09-9099-61dbe1b1572b + - d6c6da45-c1b5-4150-8593-2ccff085f458 status: 200 OK code: 200 duration: "" @@ -1410,12 +1371,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/private_nics/2ec5400d-73fa-4bbd-8672-f73c95eafab8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/private_nics/2512af22-d2d5-4413-91d3-dc46fdafc8ef method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:45.815313+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:48:16.327787+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "378" @@ -1424,7 +1385,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:50 GMT + - Fri, 27 Oct 2023 08:48:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1434,7 +1395,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ffbcc244-4a6f-41cd-a513-529097f083cc + - 8418a67c-c3d8-4641-9e4d-e4651906efbf status: 200 OK code: 200 duration: "" @@ -1443,12 +1404,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/private_nics/2ec5400d-73fa-4bbd-8672-f73c95eafab8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/private_nics/2512af22-d2d5-4413-91d3-dc46fdafc8ef method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:45.815313+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:48:16.327787+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "378" @@ -1457,7 +1418,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:50 GMT + - Fri, 27 Oct 2023 08:48:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1467,7 +1428,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 563c403f-821b-4bc0-be06-235b6d49bab6 + - a52b8006-addd-461c-87c4-ea4e4366b8e1 status: 200 OK code: 200 duration: "" @@ -1476,27 +1437,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375 method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:54:51.156669+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-competent-herschel","id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:47:27.847300+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-festive-villani","id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1902","node_id":"12","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b3:83","maintenances":[],"modification_date":"2023-10-20T14:55:09.626445+00:00","name":"tf-srv-competent-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.154.23","private_nics":[{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:45.815313+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:54:51.156669+00:00","export_uri":null,"id":"b1e88085-dd63-4615-bd5e-e0290130a466","modification_date":"2023-10-20T14:54:51.156669+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","name":"tf-srv-competent-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"402","node_id":"2","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bb:d3","maintenances":[],"modification_date":"2023-10-27T08:47:41.052314+00:00","name":"tf-srv-festive-villani","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.14.3","private_nics":[{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:48:16.327787+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:47:27.847300+00:00","export_uri":null,"id":"8ca2f20f-d9c1-4c2a-a801-f3394397d703","modification_date":"2023-10-27T08:47:27.847300+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","name":"tf-srv-festive-villani"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3173" + - "3160" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:51 GMT + - Fri, 27 Oct 2023 08:48:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1506,7 +1467,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79060ecc-1887-4ea5-921e-d44a65835296 + - 166950ab-632c-4e53-8e78-31cce02c70c7 status: 200 OK code: 200 duration: "" @@ -1515,9 +1476,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/user_data method: GET response: body: '{"user_data":[]}' @@ -1529,7 +1490,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:51 GMT + - Fri, 27 Oct 2023 08:48:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1539,7 +1500,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77a166dd-95e3-41e3-bd2d-456ed57f2c9f + - 6b856268-d8b3-4c81-bb1c-ca79fd95a829 status: 200 OK code: 200 duration: "" @@ -1548,12 +1509,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:45.815313+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:48:16.327787+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "381" @@ -1562,9 +1523,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:51 GMT + - Fri, 27 Oct 2023 08:48:21 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -1575,7 +1536,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec54ee89-fb8e-4605-ac57-9ba166c545ce + - d138e2fa-14f1-4d3c-897f-8b46193460c8 X-Total-Count: - "1" status: 200 OK @@ -1586,12 +1547,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/49ebf11f-e3d8-4a04-ab76-3e1d78bde62c + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/efcbf5b2-0993-4c1f-8594-9cda8035bdcd method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":"02:00:00:14:58:1F","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"ready","updated_at":"2023-10-20T14:55:01.760066Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":"02:00:00:14:73:F9","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"ready","updated_at":"2023-10-27T08:47:36.798169Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -1600,7 +1561,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:51 GMT + - Fri, 27 Oct 2023 08:48:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1610,32 +1571,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 030a45cc-ec1f-4162-9e7d-0c841c9dec84 + - b42e663f-38ce-455e-a0ea-747ec2cb24dd status: 200 OK code: 200 duration: "" - request: - body: '{"gateway_network_id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","mac_address":"02:00:00:14:58:21","ip_address":"192.168.1.1"}' + body: '{"gateway_network_id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","mac_address":"02:00:00:14:73:fa","ip_address":"192.168.1.1"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries method: POST response: - body: '{"created_at":"2023-10-20T14:55:15.312988Z","gateway_network_id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","hostname":"tf-srv-competent-herschel","id":"9689c9d4-1a46-4877-b567-bbf4965806f9","ip_address":"192.168.1.1","mac_address":"02:00:00:14:58:21","type":"reservation","updated_at":"2023-10-20T14:55:51.736094Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T08:47:45.933044Z","gateway_network_id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","hostname":"tf-srv-festive-villani","id":"ead05609-64ac-47fa-a04d-ca284c8d6ba7","ip_address":"192.168.1.1","mac_address":"02:00:00:14:73:fa","type":"reservation","updated_at":"2023-10-27T08:48:21.925008Z","zone":"fr-par-1"}' headers: Content-Length: - - "338" + - "335" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:51 GMT + - Fri, 27 Oct 2023 08:48:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1645,7 +1606,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22e27cc5-2008-49d0-bdbf-a23a4ab8e98f + - 6a292a61-a5ef-4196-9de3-bac597710d83 status: 200 OK code: 200 duration: "" @@ -1654,12 +1615,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/49ebf11f-e3d8-4a04-ab76-3e1d78bde62c + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/efcbf5b2-0993-4c1f-8594-9cda8035bdcd method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":"02:00:00:14:58:1F","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"ready","updated_at":"2023-10-20T14:55:01.760066Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":"02:00:00:14:73:F9","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"ready","updated_at":"2023-10-27T08:47:36.798169Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -1668,7 +1629,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:51 GMT + - Fri, 27 Oct 2023 08:48:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1678,7 +1639,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11fe237c-980f-42b9-98b5-f010e272b2f5 + - d6cb617a-a9fd-4677-a29e-b833a2089025 status: 200 OK code: 200 duration: "" @@ -1687,21 +1648,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/9689c9d4-1a46-4877-b567-bbf4965806f9 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/ead05609-64ac-47fa-a04d-ca284c8d6ba7 method: GET response: - body: '{"created_at":"2023-10-20T14:55:15.312988Z","gateway_network_id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","hostname":"tf-srv-competent-herschel","id":"9689c9d4-1a46-4877-b567-bbf4965806f9","ip_address":"192.168.1.1","mac_address":"02:00:00:14:58:21","type":"reservation","updated_at":"2023-10-20T14:55:51.736094Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T08:47:45.933044Z","gateway_network_id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","hostname":"tf-srv-festive-villani","id":"ead05609-64ac-47fa-a04d-ca284c8d6ba7","ip_address":"192.168.1.1","mac_address":"02:00:00:14:73:fa","type":"reservation","updated_at":"2023-10-27T08:48:21.925008Z","zone":"fr-par-1"}' headers: Content-Length: - - "338" + - "335" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:51 GMT + - Fri, 27 Oct 2023 08:48:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1711,7 +1672,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2762d91-79aa-4997-9aa8-2e7f0d721f9c + - c99efd9a-bf8a-4c30-ac4a-26b79362a2d0 status: 200 OK code: 200 duration: "" @@ -1720,21 +1681,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/9689c9d4-1a46-4877-b567-bbf4965806f9 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/ead05609-64ac-47fa-a04d-ca284c8d6ba7 method: GET response: - body: '{"created_at":"2023-10-20T14:55:15.312988Z","gateway_network_id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","hostname":"tf-srv-competent-herschel","id":"9689c9d4-1a46-4877-b567-bbf4965806f9","ip_address":"192.168.1.1","mac_address":"02:00:00:14:58:21","type":"reservation","updated_at":"2023-10-20T14:55:51.736094Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T08:47:45.933044Z","gateway_network_id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","hostname":"tf-srv-festive-villani","id":"ead05609-64ac-47fa-a04d-ca284c8d6ba7","ip_address":"192.168.1.1","mac_address":"02:00:00:14:73:fa","type":"reservation","updated_at":"2023-10-27T08:48:21.925008Z","zone":"fr-par-1"}' headers: Content-Length: - - "338" + - "335" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:52 GMT + - Fri, 27 Oct 2023 08:48:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1744,7 +1705,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0993bec-7d68-4a3f-9237-7c69ebbdaa90 + - 9421f559-bffe-4324-9c40-90475d572f7a status: 200 OK code: 200 duration: "" @@ -1753,12 +1714,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/4a889438-daf1-417e-aee4-996c8b27ccfc + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/02108c84-3b51-42bf-ab0e-80a31d16c2b2 method: GET response: - body: '{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"}' headers: Content-Length: - "586" @@ -1767,7 +1728,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:52 GMT + - Fri, 27 Oct 2023 08:48:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1777,7 +1738,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0327b4b0-0f12-401f-a2f0-280832adf275 + - 5b09616b-2816-4ded-a9d0-ed4a0b2c3303 status: 200 OK code: 200 duration: "" @@ -1786,12 +1747,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/f5a1fd31-4400-4fa1-8432-b312cfd012cd + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/62af1417-86bf-4d31-b332-2062147923d9 method: GET response: - body: '{"address":"51.158.65.159","created_at":"2023-10-20T14:54:49.962464Z","gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"f5a1fd31-4400-4fa1-8432-b312cfd012cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"159-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:54:49.962464Z","zone":"fr-par-1"}' + body: '{"address":"212.47.226.36","created_at":"2023-10-27T08:47:27.363624Z","gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"62af1417-86bf-4d31-b332-2062147923d9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"36-226-47-212.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:47:27.363624Z","zone":"fr-par-1"}' headers: Content-Length: - "401" @@ -1800,7 +1761,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:52 GMT + - Fri, 27 Oct 2023 08:48:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1810,7 +1771,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ba4a005-2b2a-4116-93e7-0b370fb5d534 + - 7f04146d-acb8-439d-b3fb-57ca7498b465 status: 200 OK code: 200 duration: "" @@ -1819,12 +1780,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4acd338e-6465-4dc3-a997-5e31625a283c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1854988a-8aaf-45a3-a953-74a043852df4 method: GET response: - body: '{"created_at":"2023-10-20T14:54:49.394486Z","dhcp_enabled":true,"id":"4acd338e-6465-4dc3-a997-5e31625a283c","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T14:54:49.394486Z","id":"3c7b7e99-01e2-40cd-84b1-cf707f6d207c","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:55.775503Z"},{"created_at":"2023-10-20T14:54:49.394486Z","id":"2dc34e55-fd33-4619-bbb1-295b32ad4c9f","subnet":"fd5f:519c:6d46:b485::/64","updated_at":"2023-10-20T14:54:55.778634Z"}],"tags":[],"updated_at":"2023-10-20T14:55:01.186016Z","vpc_id":"058bb8f6-e3fb-4d05-b99c-fab950078e66"}' + body: '{"created_at":"2023-10-27T08:47:26.715298Z","dhcp_enabled":true,"id":"1854988a-8aaf-45a3-a953-74a043852df4","name":"pn_test_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T08:47:26.715298Z","id":"dac82a5a-57e1-4e15-b520-4ceef31120e4","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:33.205868Z"},{"created_at":"2023-10-27T08:47:26.715298Z","id":"5c74cca7-5797-46e6-a24b-4ae703ad67cd","subnet":"fd46:78ab:30b8:6031::/64","updated_at":"2023-10-27T08:47:33.209532Z"}],"tags":[],"updated_at":"2023-10-27T08:47:36.373109Z","vpc_id":"e3d67c64-231a-4b03-80ca-c3ad723bcc19"}' headers: Content-Length: - "716" @@ -1833,7 +1794,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:52 GMT + - Fri, 27 Oct 2023 08:48:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1843,7 +1804,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08defaa5-019b-4b9a-bf72-7d69a5a93e54 + - 587dc107-25bf-4c8b-bb92-225759ca7793 status: 200 OK code: 200 duration: "" @@ -1852,12 +1813,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/86efc927-4816-4b90-b1b0-b184079e15ed + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2a74d20c-a2cd-4078-b58b-93db631444e3 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:54:50.160667Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":"02:00:00:14:58:1F","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"ready","updated_at":"2023-10-20T14:55:01.760066Z","zone":"fr-par-1"}],"id":"86efc927-4816-4b90-b1b0-b184079e15ed","ip":{"address":"51.158.65.159","created_at":"2023-10-20T14:54:49.962464Z","gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"f5a1fd31-4400-4fa1-8432-b312cfd012cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"159-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:54:49.962464Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:55:01.868988Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:47:27.548696Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":"02:00:00:14:73:F9","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"ready","updated_at":"2023-10-27T08:47:36.798169Z","zone":"fr-par-1"}],"id":"2a74d20c-a2cd-4078-b58b-93db631444e3","ip":{"address":"212.47.226.36","created_at":"2023-10-27T08:47:27.363624Z","gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"62af1417-86bf-4d31-b332-2062147923d9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"36-226-47-212.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:47:27.363624Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:47:36.899931Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "1964" @@ -1866,7 +1827,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:52 GMT + - Fri, 27 Oct 2023 08:48:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1876,7 +1837,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3893b6d7-7461-4067-ae14-b8a9e2613503 + - 8a2e9134-7f5e-4557-ba75-32b60f7a184c status: 200 OK code: 200 duration: "" @@ -1885,12 +1846,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/49ebf11f-e3d8-4a04-ab76-3e1d78bde62c + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/efcbf5b2-0993-4c1f-8594-9cda8035bdcd method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":"02:00:00:14:58:1F","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"ready","updated_at":"2023-10-20T14:55:01.760066Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":"02:00:00:14:73:F9","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"ready","updated_at":"2023-10-27T08:47:36.798169Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -1899,7 +1860,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:53 GMT + - Fri, 27 Oct 2023 08:48:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1909,7 +1870,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e90e43b8-3a38-4c7a-bb43-311d84ec1124 + - 5d1972f1-9993-4ccb-8902-0aba225cfc5d status: 200 OK code: 200 duration: "" @@ -1918,27 +1879,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2a74d20c-a2cd-4078-b58b-93db631444e3 method: GET response: - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON - scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:54:51.156669+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-competent-herschel","id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1902","node_id":"12","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b3:83","maintenances":[],"modification_date":"2023-10-20T14:55:09.626445+00:00","name":"tf-srv-competent-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.154.23","private_nics":[{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:45.815313+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:54:51.156669+00:00","export_uri":null,"id":"b1e88085-dd63-4615-bd5e-e0290130a466","modification_date":"2023-10-20T14:54:51.156669+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","name":"tf-srv-competent-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:47:27.548696Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":"02:00:00:14:73:F9","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"ready","updated_at":"2023-10-27T08:47:36.798169Z","zone":"fr-par-1"}],"id":"2a74d20c-a2cd-4078-b58b-93db631444e3","ip":{"address":"212.47.226.36","created_at":"2023-10-27T08:47:27.363624Z","gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"62af1417-86bf-4d31-b332-2062147923d9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"36-226-47-212.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:47:27.363624Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:47:36.899931Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "3173" + - "1964" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:53 GMT + - Fri, 27 Oct 2023 08:48:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1948,7 +1903,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ba281f9-88b3-4e9f-ba76-47762f40f93e + - 32a267f5-7646-4b7f-8d67-248fd372cad3 status: 200 OK code: 200 duration: "" @@ -1957,21 +1912,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/86efc927-4816-4b90-b1b0-b184079e15ed + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:54:50.160667Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":"02:00:00:14:58:1F","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"ready","updated_at":"2023-10-20T14:55:01.760066Z","zone":"fr-par-1"}],"id":"86efc927-4816-4b90-b1b0-b184079e15ed","ip":{"address":"51.158.65.159","created_at":"2023-10-20T14:54:49.962464Z","gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"f5a1fd31-4400-4fa1-8432-b312cfd012cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"159-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:54:49.962464Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:55:01.868988Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON + scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:47:27.847300+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-festive-villani","id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"402","node_id":"2","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bb:d3","maintenances":[],"modification_date":"2023-10-27T08:47:41.052314+00:00","name":"tf-srv-festive-villani","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.14.3","private_nics":[{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:48:16.327787+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:47:27.847300+00:00","export_uri":null,"id":"8ca2f20f-d9c1-4c2a-a801-f3394397d703","modification_date":"2023-10-27T08:47:27.847300+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","name":"tf-srv-festive-villani"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1964" + - "3160" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:53 GMT + - Fri, 27 Oct 2023 08:48:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1981,7 +1942,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02b351f1-d7fe-4551-a458-01a3a506cb5b + - af3114e0-2c51-4d27-b623-f0b1404a23fa status: 200 OK code: 200 duration: "" @@ -1990,21 +1951,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/user_data + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/efcbf5b2-0993-4c1f-8594-9cda8035bdcd method: GET response: - body: '{"user_data":[]}' + body: '{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":"02:00:00:14:73:F9","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"ready","updated_at":"2023-10-27T08:47:36.798169Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "996" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:53 GMT + - Fri, 27 Oct 2023 08:48:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2014,7 +1975,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c6af287-6811-4b8e-b0b6-4661207abed0 + - 1f2450af-ac57-4d29-a30b-56c08a0e2fa7 status: 200 OK code: 200 duration: "" @@ -2023,21 +1984,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/49ebf11f-e3d8-4a04-ab76-3e1d78bde62c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/user_data method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":"02:00:00:14:58:1F","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"ready","updated_at":"2023-10-20T14:55:01.760066Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "996" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:53 GMT + - Fri, 27 Oct 2023 08:48:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2047,7 +2008,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c802b216-724e-452d-bdb2-d496298b3705 + - 3fc2ef80-40da-40a3-bc18-58dd7710cc19 status: 200 OK code: 200 duration: "" @@ -2056,12 +2017,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:45.815313+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:48:16.327787+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "381" @@ -2070,9 +2031,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:53 GMT + - Fri, 27 Oct 2023 08:48:23 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -2083,7 +2044,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d73f5560-6ed3-46e1-9899-f6c51d07398f + - d6fb19b1-2a26-4726-9726-7268a01fb369 X-Total-Count: - "1" status: 200 OK @@ -2094,21 +2055,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/9689c9d4-1a46-4877-b567-bbf4965806f9 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/ead05609-64ac-47fa-a04d-ca284c8d6ba7 method: GET response: - body: '{"created_at":"2023-10-20T14:55:15.312988Z","gateway_network_id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","hostname":"tf-srv-competent-herschel","id":"9689c9d4-1a46-4877-b567-bbf4965806f9","ip_address":"192.168.1.1","mac_address":"02:00:00:14:58:21","type":"reservation","updated_at":"2023-10-20T14:55:51.736094Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T08:47:45.933044Z","gateway_network_id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","hostname":"tf-srv-festive-villani","id":"ead05609-64ac-47fa-a04d-ca284c8d6ba7","ip_address":"192.168.1.1","mac_address":"02:00:00:14:73:fa","type":"reservation","updated_at":"2023-10-27T08:48:21.925008Z","zone":"fr-par-1"}' headers: Content-Length: - - "338" + - "335" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:53 GMT + - Fri, 27 Oct 2023 08:48:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2118,7 +2079,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3acbcb6-fe35-44d0-ae3a-a92cc93ad568 + - 94600feb-6b09-4df9-9ec0-4a4f90c1a91c status: 200 OK code: 200 duration: "" @@ -2127,12 +2088,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/f5a1fd31-4400-4fa1-8432-b312cfd012cd + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/62af1417-86bf-4d31-b332-2062147923d9 method: GET response: - body: '{"address":"51.158.65.159","created_at":"2023-10-20T14:54:49.962464Z","gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"f5a1fd31-4400-4fa1-8432-b312cfd012cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"159-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:54:49.962464Z","zone":"fr-par-1"}' + body: '{"address":"212.47.226.36","created_at":"2023-10-27T08:47:27.363624Z","gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"62af1417-86bf-4d31-b332-2062147923d9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"36-226-47-212.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:47:27.363624Z","zone":"fr-par-1"}' headers: Content-Length: - "401" @@ -2141,7 +2102,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:53 GMT + - Fri, 27 Oct 2023 08:48:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2151,7 +2112,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 703269d3-afba-4335-a8eb-b5e5552721ba + - 4f6eac21-feda-403a-b4e5-3788b3f4ce02 status: 200 OK code: 200 duration: "" @@ -2160,21 +2121,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4acd338e-6465-4dc3-a997-5e31625a283c + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/02108c84-3b51-42bf-ab0e-80a31d16c2b2 method: GET response: - body: '{"created_at":"2023-10-20T14:54:49.394486Z","dhcp_enabled":true,"id":"4acd338e-6465-4dc3-a997-5e31625a283c","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T14:54:49.394486Z","id":"3c7b7e99-01e2-40cd-84b1-cf707f6d207c","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:55.775503Z"},{"created_at":"2023-10-20T14:54:49.394486Z","id":"2dc34e55-fd33-4619-bbb1-295b32ad4c9f","subnet":"fd5f:519c:6d46:b485::/64","updated_at":"2023-10-20T14:54:55.778634Z"}],"tags":[],"updated_at":"2023-10-20T14:55:01.186016Z","vpc_id":"058bb8f6-e3fb-4d05-b99c-fab950078e66"}' + body: '{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"}' headers: Content-Length: - - "716" + - "586" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:53 GMT + - Fri, 27 Oct 2023 08:48:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2184,7 +2145,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c59dc84-0fb9-4af0-b334-e7a9c872cda0 + - 47dd44c0-2be0-4fa5-b017-ea0ea40ddd4d status: 200 OK code: 200 duration: "" @@ -2193,21 +2154,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/4a889438-daf1-417e-aee4-996c8b27ccfc + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2a74d20c-a2cd-4078-b58b-93db631444e3 method: GET response: - body: '{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:47:27.548696Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":"02:00:00:14:73:F9","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"ready","updated_at":"2023-10-27T08:47:36.798169Z","zone":"fr-par-1"}],"id":"2a74d20c-a2cd-4078-b58b-93db631444e3","ip":{"address":"212.47.226.36","created_at":"2023-10-27T08:47:27.363624Z","gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"62af1417-86bf-4d31-b332-2062147923d9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"36-226-47-212.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:47:27.363624Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:47:36.899931Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "586" + - "1964" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:53 GMT + - Fri, 27 Oct 2023 08:48:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2217,7 +2178,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 400e2097-1ef3-41b9-a16e-75c7f58a4ab4 + - 90bd46b9-c829-4c58-b82b-01f5d1f61221 status: 200 OK code: 200 duration: "" @@ -2226,21 +2187,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/86efc927-4816-4b90-b1b0-b184079e15ed + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1854988a-8aaf-45a3-a953-74a043852df4 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:54:50.160667Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":"02:00:00:14:58:1F","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"ready","updated_at":"2023-10-20T14:55:01.760066Z","zone":"fr-par-1"}],"id":"86efc927-4816-4b90-b1b0-b184079e15ed","ip":{"address":"51.158.65.159","created_at":"2023-10-20T14:54:49.962464Z","gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"f5a1fd31-4400-4fa1-8432-b312cfd012cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"159-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:54:49.962464Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:55:01.868988Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T08:47:26.715298Z","dhcp_enabled":true,"id":"1854988a-8aaf-45a3-a953-74a043852df4","name":"pn_test_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T08:47:26.715298Z","id":"dac82a5a-57e1-4e15-b520-4ceef31120e4","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:33.205868Z"},{"created_at":"2023-10-27T08:47:26.715298Z","id":"5c74cca7-5797-46e6-a24b-4ae703ad67cd","subnet":"fd46:78ab:30b8:6031::/64","updated_at":"2023-10-27T08:47:33.209532Z"}],"tags":[],"updated_at":"2023-10-27T08:47:36.373109Z","vpc_id":"e3d67c64-231a-4b03-80ca-c3ad723bcc19"}' headers: Content-Length: - - "1964" + - "716" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:53 GMT + - Fri, 27 Oct 2023 08:48:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2250,7 +2211,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75d37909-45bb-4d19-bcac-ca55a991bfc7 + - 4cb80d8c-bfc6-47e7-8515-eab3925eccda status: 200 OK code: 200 duration: "" @@ -2259,12 +2220,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/49ebf11f-e3d8-4a04-ab76-3e1d78bde62c + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/efcbf5b2-0993-4c1f-8594-9cda8035bdcd method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":"02:00:00:14:58:1F","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"ready","updated_at":"2023-10-20T14:55:01.760066Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":"02:00:00:14:73:F9","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"ready","updated_at":"2023-10-27T08:47:36.798169Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -2273,7 +2234,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:53 GMT + - Fri, 27 Oct 2023 08:48:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2283,7 +2244,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97c41ddb-5a4b-4411-8466-64660b793d3b + - dc1f7f83-11e6-4146-a831-13bc56a60e70 status: 200 OK code: 200 duration: "" @@ -2292,12 +2253,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/86efc927-4816-4b90-b1b0-b184079e15ed + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2a74d20c-a2cd-4078-b58b-93db631444e3 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:54:50.160667Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":"02:00:00:14:58:1F","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"ready","updated_at":"2023-10-20T14:55:01.760066Z","zone":"fr-par-1"}],"id":"86efc927-4816-4b90-b1b0-b184079e15ed","ip":{"address":"51.158.65.159","created_at":"2023-10-20T14:54:49.962464Z","gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"f5a1fd31-4400-4fa1-8432-b312cfd012cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"159-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:54:49.962464Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:55:01.868988Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:47:27.548696Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":"02:00:00:14:73:F9","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"ready","updated_at":"2023-10-27T08:47:36.798169Z","zone":"fr-par-1"}],"id":"2a74d20c-a2cd-4078-b58b-93db631444e3","ip":{"address":"212.47.226.36","created_at":"2023-10-27T08:47:27.363624Z","gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"62af1417-86bf-4d31-b332-2062147923d9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"36-226-47-212.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:47:27.363624Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:47:36.899931Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "1964" @@ -2306,7 +2267,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:53 GMT + - Fri, 27 Oct 2023 08:48:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2316,7 +2277,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30e16414-d7ed-44aa-bd8b-73961776aac9 + - a072bab3-384d-4ebc-a89f-cb327d244b52 status: 200 OK code: 200 duration: "" @@ -2325,27 +2286,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375 method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:54:51.156669+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-competent-herschel","id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:47:27.847300+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-festive-villani","id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1902","node_id":"12","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b3:83","maintenances":[],"modification_date":"2023-10-20T14:55:09.626445+00:00","name":"tf-srv-competent-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.154.23","private_nics":[{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:45.815313+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:54:51.156669+00:00","export_uri":null,"id":"b1e88085-dd63-4615-bd5e-e0290130a466","modification_date":"2023-10-20T14:54:51.156669+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","name":"tf-srv-competent-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"402","node_id":"2","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bb:d3","maintenances":[],"modification_date":"2023-10-27T08:47:41.052314+00:00","name":"tf-srv-festive-villani","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.14.3","private_nics":[{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:48:16.327787+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:47:27.847300+00:00","export_uri":null,"id":"8ca2f20f-d9c1-4c2a-a801-f3394397d703","modification_date":"2023-10-27T08:47:27.847300+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","name":"tf-srv-festive-villani"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3173" + - "3160" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:53 GMT + - Fri, 27 Oct 2023 08:48:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2355,7 +2316,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 733306e1-d8cb-4fd8-86cf-6168156a5003 + - 0da9a262-6a23-4529-8da4-f0fdf075dd40 status: 200 OK code: 200 duration: "" @@ -2364,12 +2325,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/49ebf11f-e3d8-4a04-ab76-3e1d78bde62c + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/efcbf5b2-0993-4c1f-8594-9cda8035bdcd method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":"02:00:00:14:58:1F","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"ready","updated_at":"2023-10-20T14:55:01.760066Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":"02:00:00:14:73:F9","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"ready","updated_at":"2023-10-27T08:47:36.798169Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -2378,7 +2339,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:54 GMT + - Fri, 27 Oct 2023 08:48:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2388,7 +2349,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5b2ce1a-f069-4bb8-a4ff-96f71d2f4ddc + - 5d363da5-0eb8-437c-9cc3-f26d5a6b7110 status: 200 OK code: 200 duration: "" @@ -2397,9 +2358,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/user_data method: GET response: body: '{"user_data":[]}' @@ -2411,7 +2372,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:54 GMT + - Fri, 27 Oct 2023 08:48:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2421,7 +2382,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38c1ea0f-8a32-4847-a3ee-5f5a494357c9 + - 3d3b4e5f-9282-4bd1-af0d-1a9002e08d2a status: 200 OK code: 200 duration: "" @@ -2430,12 +2391,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:45.815313+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:48:16.327787+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "381" @@ -2444,9 +2405,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:54 GMT + - Fri, 27 Oct 2023 08:48:23 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -2457,7 +2418,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a13e5e8-adeb-44d8-973a-b61efb485345 + - d9245097-ba87-4788-ac0d-b512b9869745 X-Total-Count: - "1" status: 200 OK @@ -2468,21 +2429,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/9689c9d4-1a46-4877-b567-bbf4965806f9 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/ead05609-64ac-47fa-a04d-ca284c8d6ba7 method: GET response: - body: '{"created_at":"2023-10-20T14:55:15.312988Z","gateway_network_id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","hostname":"tf-srv-competent-herschel","id":"9689c9d4-1a46-4877-b567-bbf4965806f9","ip_address":"192.168.1.1","mac_address":"02:00:00:14:58:21","type":"reservation","updated_at":"2023-10-20T14:55:51.736094Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T08:47:45.933044Z","gateway_network_id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","hostname":"tf-srv-festive-villani","id":"ead05609-64ac-47fa-a04d-ca284c8d6ba7","ip_address":"192.168.1.1","mac_address":"02:00:00:14:73:fa","type":"reservation","updated_at":"2023-10-27T08:48:21.925008Z","zone":"fr-par-1"}' headers: Content-Length: - - "338" + - "335" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:54 GMT + - Fri, 27 Oct 2023 08:48:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2492,7 +2453,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6473f3fd-2e3a-4c71-8741-6c05267568b4 + - d1da76ec-de63-48ab-927f-acac36f4ee70 status: 200 OK code: 200 duration: "" @@ -2501,12 +2462,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/49ebf11f-e3d8-4a04-ab76-3e1d78bde62c + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/efcbf5b2-0993-4c1f-8594-9cda8035bdcd method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":"02:00:00:14:58:1F","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"ready","updated_at":"2023-10-20T14:55:01.760066Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":"02:00:00:14:73:F9","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"ready","updated_at":"2023-10-27T08:47:36.798169Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -2515,7 +2476,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:54 GMT + - Fri, 27 Oct 2023 08:48:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2525,7 +2486,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15742ef0-5a4a-4ee5-b8bd-391b7847c7ec + - 568dfb5c-22b5-4fb3-950d-d5a5b2fd29b0 status: 200 OK code: 200 duration: "" @@ -2536,21 +2497,21 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/9689c9d4-1a46-4877-b567-bbf4965806f9 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/ead05609-64ac-47fa-a04d-ca284c8d6ba7 method: PATCH response: - body: '{"created_at":"2023-10-20T14:55:15.312988Z","gateway_network_id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","hostname":"tf-srv-competent-herschel","id":"9689c9d4-1a46-4877-b567-bbf4965806f9","ip_address":"192.168.1.2","mac_address":"02:00:00:14:58:21","type":"reservation","updated_at":"2023-10-20T14:55:55.119017Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T08:47:45.933044Z","gateway_network_id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","hostname":"tf-srv-festive-villani","id":"ead05609-64ac-47fa-a04d-ca284c8d6ba7","ip_address":"192.168.1.2","mac_address":"02:00:00:14:73:fa","type":"reservation","updated_at":"2023-10-27T08:48:24.899997Z","zone":"fr-par-1"}' headers: Content-Length: - - "338" + - "335" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:55 GMT + - Fri, 27 Oct 2023 08:48:24 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2560,7 +2521,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 083b52dd-679a-45b3-9f36-67865019afab + - 827a7914-b26c-418d-9144-6ca18a25409e status: 200 OK code: 200 duration: "" @@ -2569,12 +2530,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/49ebf11f-e3d8-4a04-ab76-3e1d78bde62c + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/efcbf5b2-0993-4c1f-8594-9cda8035bdcd method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":"02:00:00:14:58:1F","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"ready","updated_at":"2023-10-20T14:55:01.760066Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":"02:00:00:14:73:F9","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"ready","updated_at":"2023-10-27T08:47:36.798169Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -2583,7 +2544,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:55 GMT + - Fri, 27 Oct 2023 08:48:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2593,7 +2554,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6e2c21f-714c-4f6b-9d1f-b2fd7a990f77 + - 16fd19fd-add8-4aea-aff9-e318bfc08696 status: 200 OK code: 200 duration: "" @@ -2602,21 +2563,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/9689c9d4-1a46-4877-b567-bbf4965806f9 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/ead05609-64ac-47fa-a04d-ca284c8d6ba7 method: GET response: - body: '{"created_at":"2023-10-20T14:55:15.312988Z","gateway_network_id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","hostname":"tf-srv-competent-herschel","id":"9689c9d4-1a46-4877-b567-bbf4965806f9","ip_address":"192.168.1.2","mac_address":"02:00:00:14:58:21","type":"reservation","updated_at":"2023-10-20T14:55:55.119017Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T08:47:45.933044Z","gateway_network_id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","hostname":"tf-srv-festive-villani","id":"ead05609-64ac-47fa-a04d-ca284c8d6ba7","ip_address":"192.168.1.2","mac_address":"02:00:00:14:73:fa","type":"reservation","updated_at":"2023-10-27T08:48:24.899997Z","zone":"fr-par-1"}' headers: Content-Length: - - "338" + - "335" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:55 GMT + - Fri, 27 Oct 2023 08:48:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2626,7 +2587,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6bd1416-d6e0-4e19-af42-e980748aefbf + - 352cb6b0-cea1-455a-a3eb-643e2516014e status: 200 OK code: 200 duration: "" @@ -2635,21 +2596,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/9689c9d4-1a46-4877-b567-bbf4965806f9 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/ead05609-64ac-47fa-a04d-ca284c8d6ba7 method: GET response: - body: '{"created_at":"2023-10-20T14:55:15.312988Z","gateway_network_id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","hostname":"tf-srv-competent-herschel","id":"9689c9d4-1a46-4877-b567-bbf4965806f9","ip_address":"192.168.1.2","mac_address":"02:00:00:14:58:21","type":"reservation","updated_at":"2023-10-20T14:55:55.119017Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T08:47:45.933044Z","gateway_network_id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","hostname":"tf-srv-festive-villani","id":"ead05609-64ac-47fa-a04d-ca284c8d6ba7","ip_address":"192.168.1.2","mac_address":"02:00:00:14:73:fa","type":"reservation","updated_at":"2023-10-27T08:48:24.899997Z","zone":"fr-par-1"}' headers: Content-Length: - - "338" + - "335" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:58 GMT + - Fri, 27 Oct 2023 08:48:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2659,7 +2620,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f5f2b21-37a7-47ca-ba48-8d1cd135e2dd + - 42b69503-5662-4f4d-a364-db57bcb46569 status: 200 OK code: 200 duration: "" @@ -2668,12 +2629,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/4a889438-daf1-417e-aee4-996c8b27ccfc + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/02108c84-3b51-42bf-ab0e-80a31d16c2b2 method: GET response: - body: '{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"}' headers: Content-Length: - "586" @@ -2682,7 +2643,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:59 GMT + - Fri, 27 Oct 2023 08:48:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2692,7 +2653,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b70eb20f-c4ea-4b12-bd67-57bb3d73ae14 + - 9c4d8e72-ab72-4be8-a09b-565c9ad3ce0d status: 200 OK code: 200 duration: "" @@ -2701,12 +2662,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/f5a1fd31-4400-4fa1-8432-b312cfd012cd + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/62af1417-86bf-4d31-b332-2062147923d9 method: GET response: - body: '{"address":"51.158.65.159","created_at":"2023-10-20T14:54:49.962464Z","gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"f5a1fd31-4400-4fa1-8432-b312cfd012cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"159-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:54:49.962464Z","zone":"fr-par-1"}' + body: '{"address":"212.47.226.36","created_at":"2023-10-27T08:47:27.363624Z","gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"62af1417-86bf-4d31-b332-2062147923d9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"36-226-47-212.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:47:27.363624Z","zone":"fr-par-1"}' headers: Content-Length: - "401" @@ -2715,7 +2676,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:59 GMT + - Fri, 27 Oct 2023 08:48:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2725,7 +2686,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1454caeb-85f4-4b6b-907e-64f5c61777a0 + - 9b801696-217d-447e-abd5-a0544c732ef4 status: 200 OK code: 200 duration: "" @@ -2734,12 +2695,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4acd338e-6465-4dc3-a997-5e31625a283c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1854988a-8aaf-45a3-a953-74a043852df4 method: GET response: - body: '{"created_at":"2023-10-20T14:54:49.394486Z","dhcp_enabled":true,"id":"4acd338e-6465-4dc3-a997-5e31625a283c","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T14:54:49.394486Z","id":"3c7b7e99-01e2-40cd-84b1-cf707f6d207c","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:55.775503Z"},{"created_at":"2023-10-20T14:54:49.394486Z","id":"2dc34e55-fd33-4619-bbb1-295b32ad4c9f","subnet":"fd5f:519c:6d46:b485::/64","updated_at":"2023-10-20T14:54:55.778634Z"}],"tags":[],"updated_at":"2023-10-20T14:55:01.186016Z","vpc_id":"058bb8f6-e3fb-4d05-b99c-fab950078e66"}' + body: '{"created_at":"2023-10-27T08:47:26.715298Z","dhcp_enabled":true,"id":"1854988a-8aaf-45a3-a953-74a043852df4","name":"pn_test_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T08:47:26.715298Z","id":"dac82a5a-57e1-4e15-b520-4ceef31120e4","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:33.205868Z"},{"created_at":"2023-10-27T08:47:26.715298Z","id":"5c74cca7-5797-46e6-a24b-4ae703ad67cd","subnet":"fd46:78ab:30b8:6031::/64","updated_at":"2023-10-27T08:47:33.209532Z"}],"tags":[],"updated_at":"2023-10-27T08:47:36.373109Z","vpc_id":"e3d67c64-231a-4b03-80ca-c3ad723bcc19"}' headers: Content-Length: - "716" @@ -2748,7 +2709,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:59 GMT + - Fri, 27 Oct 2023 08:48:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2758,7 +2719,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ecd28eaa-90d1-4cb3-9425-dd10c41d9445 + - a1e53617-44e3-4134-befd-8b98320f1872 status: 200 OK code: 200 duration: "" @@ -2767,12 +2728,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/86efc927-4816-4b90-b1b0-b184079e15ed + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2a74d20c-a2cd-4078-b58b-93db631444e3 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:54:50.160667Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":"02:00:00:14:58:1F","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"ready","updated_at":"2023-10-20T14:55:01.760066Z","zone":"fr-par-1"}],"id":"86efc927-4816-4b90-b1b0-b184079e15ed","ip":{"address":"51.158.65.159","created_at":"2023-10-20T14:54:49.962464Z","gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"f5a1fd31-4400-4fa1-8432-b312cfd012cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"159-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:54:49.962464Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:55:01.868988Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:47:27.548696Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":"02:00:00:14:73:F9","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"ready","updated_at":"2023-10-27T08:47:36.798169Z","zone":"fr-par-1"}],"id":"2a74d20c-a2cd-4078-b58b-93db631444e3","ip":{"address":"212.47.226.36","created_at":"2023-10-27T08:47:27.363624Z","gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"62af1417-86bf-4d31-b332-2062147923d9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"36-226-47-212.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:47:27.363624Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:47:36.899931Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "1964" @@ -2781,7 +2742,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:59 GMT + - Fri, 27 Oct 2023 08:48:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2791,7 +2752,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e35ac0a-811c-407d-9fcc-012c0a89bb8c + - b94f7f5c-060a-414f-9db1-508f59bde2ad status: 200 OK code: 200 duration: "" @@ -2800,12 +2761,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/49ebf11f-e3d8-4a04-ab76-3e1d78bde62c + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/efcbf5b2-0993-4c1f-8594-9cda8035bdcd method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":"02:00:00:14:58:1F","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"ready","updated_at":"2023-10-20T14:55:01.760066Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":"02:00:00:14:73:F9","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"ready","updated_at":"2023-10-27T08:47:36.798169Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -2814,7 +2775,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:59 GMT + - Fri, 27 Oct 2023 08:48:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2824,7 +2785,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0d677d5-e3c5-4eec-b1ca-3b695dc6a44e + - 32263c07-bd03-4600-85db-87c6cccd2227 status: 200 OK code: 200 duration: "" @@ -2833,12 +2794,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/86efc927-4816-4b90-b1b0-b184079e15ed + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2a74d20c-a2cd-4078-b58b-93db631444e3 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:54:50.160667Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":"02:00:00:14:58:1F","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"ready","updated_at":"2023-10-20T14:55:01.760066Z","zone":"fr-par-1"}],"id":"86efc927-4816-4b90-b1b0-b184079e15ed","ip":{"address":"51.158.65.159","created_at":"2023-10-20T14:54:49.962464Z","gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"f5a1fd31-4400-4fa1-8432-b312cfd012cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"159-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:54:49.962464Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:55:01.868988Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:47:27.548696Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":"02:00:00:14:73:F9","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"ready","updated_at":"2023-10-27T08:47:36.798169Z","zone":"fr-par-1"}],"id":"2a74d20c-a2cd-4078-b58b-93db631444e3","ip":{"address":"212.47.226.36","created_at":"2023-10-27T08:47:27.363624Z","gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"62af1417-86bf-4d31-b332-2062147923d9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"36-226-47-212.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:47:27.363624Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:47:36.899931Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "1964" @@ -2847,7 +2808,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:59 GMT + - Fri, 27 Oct 2023 08:48:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2857,7 +2818,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1646fc99-e231-474e-b60c-6c6a5dd1ce3f + - e7a60e89-9322-45ca-b773-17fb23882507 status: 200 OK code: 200 duration: "" @@ -2866,27 +2827,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375 method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:54:51.156669+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-competent-herschel","id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:47:27.847300+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-festive-villani","id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1902","node_id":"12","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b3:83","maintenances":[],"modification_date":"2023-10-20T14:55:09.626445+00:00","name":"tf-srv-competent-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.154.23","private_nics":[{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:45.815313+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:54:51.156669+00:00","export_uri":null,"id":"b1e88085-dd63-4615-bd5e-e0290130a466","modification_date":"2023-10-20T14:54:51.156669+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","name":"tf-srv-competent-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"402","node_id":"2","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bb:d3","maintenances":[],"modification_date":"2023-10-27T08:47:41.052314+00:00","name":"tf-srv-festive-villani","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.14.3","private_nics":[{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:48:16.327787+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:47:27.847300+00:00","export_uri":null,"id":"8ca2f20f-d9c1-4c2a-a801-f3394397d703","modification_date":"2023-10-27T08:47:27.847300+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","name":"tf-srv-festive-villani"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3173" + - "3160" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:59 GMT + - Fri, 27 Oct 2023 08:48:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2896,7 +2857,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60612a3f-0c12-4140-a9e5-07bffcbd3792 + - 7b72d54b-7c6a-4e10-888c-1369d443a7d5 status: 200 OK code: 200 duration: "" @@ -2905,12 +2866,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/49ebf11f-e3d8-4a04-ab76-3e1d78bde62c + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/efcbf5b2-0993-4c1f-8594-9cda8035bdcd method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":"02:00:00:14:58:1F","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"ready","updated_at":"2023-10-20T14:55:01.760066Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":"02:00:00:14:73:F9","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"ready","updated_at":"2023-10-27T08:47:36.798169Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -2919,7 +2880,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:59 GMT + - Fri, 27 Oct 2023 08:48:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2929,7 +2890,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7a0526b-949b-43c5-8b52-9649ef9d6305 + - 3311a901-b18c-4f40-ae13-627a26988947 status: 200 OK code: 200 duration: "" @@ -2938,9 +2899,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/user_data method: GET response: body: '{"user_data":[]}' @@ -2952,7 +2913,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:59 GMT + - Fri, 27 Oct 2023 08:48:25 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2962,7 +2923,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2d0901c-82d3-4baf-8c06-0d5bc6e30224 + - 5b2506df-42dc-4c5f-bde9-a87583cc218a status: 200 OK code: 200 duration: "" @@ -2971,12 +2932,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:45.815313+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:48:16.327787+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "381" @@ -2985,9 +2946,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:59 GMT + - Fri, 27 Oct 2023 08:48:25 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -2998,7 +2959,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b51c815-aafd-4472-a7eb-cb972bc58627 + - c3c5f79e-3487-4bf7-91ac-62cfb02c3f64 X-Total-Count: - "1" status: 200 OK @@ -3009,21 +2970,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/9689c9d4-1a46-4877-b567-bbf4965806f9 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/ead05609-64ac-47fa-a04d-ca284c8d6ba7 method: GET response: - body: '{"created_at":"2023-10-20T14:55:15.312988Z","gateway_network_id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","hostname":"tf-srv-competent-herschel","id":"9689c9d4-1a46-4877-b567-bbf4965806f9","ip_address":"192.168.1.2","mac_address":"02:00:00:14:58:21","type":"reservation","updated_at":"2023-10-20T14:55:55.119017Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T08:47:45.933044Z","gateway_network_id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","hostname":"tf-srv-festive-villani","id":"ead05609-64ac-47fa-a04d-ca284c8d6ba7","ip_address":"192.168.1.2","mac_address":"02:00:00:14:73:fa","type":"reservation","updated_at":"2023-10-27T08:48:24.899997Z","zone":"fr-par-1"}' headers: Content-Length: - - "338" + - "335" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:55:59 GMT + - Fri, 27 Oct 2023 08:48:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3033,7 +2994,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1cdc01e9-6179-4700-8076-79712ab1de3f + - 9d33a239-0aa0-483b-a9bd-144ad46b34ab status: 200 OK code: 200 duration: "" @@ -3042,12 +3003,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/49ebf11f-e3d8-4a04-ab76-3e1d78bde62c + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/efcbf5b2-0993-4c1f-8594-9cda8035bdcd method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":"02:00:00:14:58:1F","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"ready","updated_at":"2023-10-20T14:55:01.760066Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":"02:00:00:14:73:F9","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"ready","updated_at":"2023-10-27T08:47:36.798169Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -3056,7 +3017,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:00 GMT + - Fri, 27 Oct 2023 08:48:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3066,7 +3027,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e80062c-e4ba-4d25-ad66-a18cf2a1aaa3 + - 67fc964d-8a8b-4999-9d5e-f021cb7d2dbb status: 200 OK code: 200 duration: "" @@ -3075,9 +3036,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/9689c9d4-1a46-4877-b567-bbf4965806f9 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/ead05609-64ac-47fa-a04d-ca284c8d6ba7 method: DELETE response: body: "" @@ -3087,7 +3048,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:00 GMT + - Fri, 27 Oct 2023 08:48:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3097,7 +3058,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 146f4b6a-a483-479d-aff0-f5c441afa4a8 + - e2dfd887-e1b2-4c54-9f4c-7f98f0988d3b status: 204 No Content code: 204 duration: "" @@ -3106,12 +3067,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/49ebf11f-e3d8-4a04-ab76-3e1d78bde62c + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/efcbf5b2-0993-4c1f-8594-9cda8035bdcd method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":"02:00:00:14:58:1F","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"ready","updated_at":"2023-10-20T14:55:01.760066Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":"02:00:00:14:73:F9","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"ready","updated_at":"2023-10-27T08:47:36.798169Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -3120,7 +3081,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:00 GMT + - Fri, 27 Oct 2023 08:48:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3130,7 +3091,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61443688-0de0-4b20-9d43-73aaec152baf + - d04f73a2-ee06-4045-b33e-d5f6ef4f834c status: 200 OK code: 200 duration: "" @@ -3139,12 +3100,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/49ebf11f-e3d8-4a04-ab76-3e1d78bde62c + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/efcbf5b2-0993-4c1f-8594-9cda8035bdcd method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":"02:00:00:14:58:1F","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"ready","updated_at":"2023-10-20T14:55:01.760066Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":"02:00:00:14:73:F9","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"ready","updated_at":"2023-10-27T08:47:36.798169Z","zone":"fr-par-1"}' headers: Content-Length: - "996" @@ -3153,7 +3114,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:00 GMT + - Fri, 27 Oct 2023 08:48:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3163,7 +3124,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ef00b43-5be8-4619-8469-15c3c5f2ddd8 + - ef03c317-5122-4b3f-a64d-db848f30c655 status: 200 OK code: 200 duration: "" @@ -3172,27 +3133,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375 method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:54:51.156669+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-competent-herschel","id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:47:27.847300+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-festive-villani","id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1902","node_id":"12","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b3:83","maintenances":[],"modification_date":"2023-10-20T14:55:09.626445+00:00","name":"tf-srv-competent-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.154.23","private_nics":[{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:45.815313+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:54:51.156669+00:00","export_uri":null,"id":"b1e88085-dd63-4615-bd5e-e0290130a466","modification_date":"2023-10-20T14:54:51.156669+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","name":"tf-srv-competent-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"402","node_id":"2","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bb:d3","maintenances":[],"modification_date":"2023-10-27T08:47:41.052314+00:00","name":"tf-srv-festive-villani","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.14.3","private_nics":[{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:48:16.327787+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:47:27.847300+00:00","export_uri":null,"id":"8ca2f20f-d9c1-4c2a-a801-f3394397d703","modification_date":"2023-10-27T08:47:27.847300+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","name":"tf-srv-festive-villani"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3173" + - "3160" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:00 GMT + - Fri, 27 Oct 2023 08:48:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3202,7 +3163,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 874d46af-f215-4978-8be0-aa1d3958c5e9 + - 460a65ee-3825-400a-81dd-198bf1b6ed0a status: 200 OK code: 200 duration: "" @@ -3211,9 +3172,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/49ebf11f-e3d8-4a04-ab76-3e1d78bde62c?cleanup_dhcp=true + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/efcbf5b2-0993-4c1f-8594-9cda8035bdcd?cleanup_dhcp=true method: DELETE response: body: "" @@ -3223,7 +3184,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:00 GMT + - Fri, 27 Oct 2023 08:48:26 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3233,7 +3194,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 249fec75-6128-4af4-ab6d-fdcf713528ad + - 070a4972-d615-492e-a902-677dd413c906 status: 204 No Content code: 204 duration: "" @@ -3242,12 +3203,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/49ebf11f-e3d8-4a04-ab76-3e1d78bde62c + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/efcbf5b2-0993-4c1f-8594-9cda8035bdcd method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:54:58.970489Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-20T14:54:49.409070Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"4a889438-daf1-417e-aee4-996c8b27ccfc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-20T14:54:49.409070Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","ipam_config":null,"mac_address":"02:00:00:14:58:1F","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","status":"detaching","updated_at":"2023-10-20T14:56:00.780173Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T08:47:34.299608Z","dhcp":{"address":"192.168.1.1","created_at":"2023-10-27T08:47:26.723458Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"192.168.1.254","pool_low":"192.168.1.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"192.168.1.0/24","updated_at":"2023-10-27T08:47:26.723458Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","ipam_config":null,"mac_address":"02:00:00:14:73:F9","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","status":"detaching","updated_at":"2023-10-27T08:48:26.917415Z","zone":"fr-par-1"}' headers: Content-Length: - "1000" @@ -3256,7 +3217,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:00 GMT + - Fri, 27 Oct 2023 08:48:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3266,7 +3227,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8cb2a49a-9484-42d0-be13-a5548a09b82a + - 75e69c2b-8eff-429d-a717-a7ca984b0352 status: 200 OK code: 200 duration: "" @@ -3277,12 +3238,12 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/action method: POST response: - body: '{"task":{"description":"server_poweroff","href_from":"/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/action","href_result":"/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","id":"ca93efe0-c3bc-4c6d-bdb1-dd7cb4bde85c","started_at":"2023-10-20T14:56:01.398710+00:00","status":"pending","terminated_at":null}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/action","href_result":"/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375","id":"27f45936-c4d5-48df-8c4d-ca8c9ea5fe7b","started_at":"2023-10-27T08:48:27.208021+00:00","status":"pending","terminated_at":null}}' headers: Content-Length: - "317" @@ -3291,9 +3252,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:01 GMT + - Fri, 27 Oct 2023 08:48:27 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ca93efe0-c3bc-4c6d-bdb1-dd7cb4bde85c + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/27f45936-c4d5-48df-8c4d-ca8c9ea5fe7b Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3303,7 +3264,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ca75df6-4ed1-45f3-9e60-d995ae44ae38 + - c886869b-c7cc-4d28-9666-7e1c2a42b3b1 status: 202 Accepted code: 202 duration: "" @@ -3312,27 +3273,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:54:51.156669+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-competent-herschel","id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:47:27.847300+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-festive-villani","id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1902","node_id":"12","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b3:83","maintenances":[],"modification_date":"2023-10-20T14:56:00.838902+00:00","name":"tf-srv-competent-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.154.23","private_nics":[{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:45.815313+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:54:51.156669+00:00","export_uri":null,"id":"b1e88085-dd63-4615-bd5e-e0290130a466","modification_date":"2023-10-20T14:54:51.156669+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","name":"tf-srv-competent-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"402","node_id":"2","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bb:d3","maintenances":[],"modification_date":"2023-10-27T08:48:26.944616+00:00","name":"tf-srv-festive-villani","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.14.3","private_nics":[{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:48:16.327787+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:47:27.847300+00:00","export_uri":null,"id":"8ca2f20f-d9c1-4c2a-a801-f3394397d703","modification_date":"2023-10-27T08:47:27.847300+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","name":"tf-srv-festive-villani"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3141" + - "3128" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:01 GMT + - Fri, 27 Oct 2023 08:48:27 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3342,7 +3303,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7efcc704-dbdc-4956-b963-b1f8d1de8925 + - 5454aa32-b403-4ba3-b09a-9c8d509eaff5 status: 200 OK code: 200 duration: "" @@ -3351,12 +3312,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/49ebf11f-e3d8-4a04-ab76-3e1d78bde62c + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/efcbf5b2-0993-4c1f-8594-9cda8035bdcd method: GET response: - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"49ebf11f-e3d8-4a04-ab76-3e1d78bde62c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"efcbf5b2-0993-4c1f-8594-9cda8035bdcd","type":"not_found"}' headers: Content-Length: - "136" @@ -3365,7 +3326,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:05 GMT + - Fri, 27 Oct 2023 08:48:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3375,7 +3336,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f072dfe-1984-4052-b884-c199da5de262 + - 0596505f-7af9-4fe5-adce-13d5cad8e004 status: 404 Not Found code: 404 duration: "" @@ -3384,12 +3345,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/86efc927-4816-4b90-b1b0-b184079e15ed + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2a74d20c-a2cd-4078-b58b-93db631444e3 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:54:50.160667Z","gateway_networks":[],"id":"86efc927-4816-4b90-b1b0-b184079e15ed","ip":{"address":"51.158.65.159","created_at":"2023-10-20T14:54:49.962464Z","gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"f5a1fd31-4400-4fa1-8432-b312cfd012cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"159-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:54:49.962464Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:55:01.868988Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:47:27.548696Z","gateway_networks":[],"id":"2a74d20c-a2cd-4078-b58b-93db631444e3","ip":{"address":"212.47.226.36","created_at":"2023-10-27T08:47:27.363624Z","gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"62af1417-86bf-4d31-b332-2062147923d9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"36-226-47-212.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:47:27.363624Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:47:36.899931Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "968" @@ -3398,7 +3359,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:05 GMT + - Fri, 27 Oct 2023 08:48:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3408,7 +3369,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - babd5d56-f586-4165-b2a2-7b566c022a86 + - f880f771-ec28-479e-bfc3-d5f8bb91dc16 status: 200 OK code: 200 duration: "" @@ -3417,12 +3378,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/4a889438-daf1-417e-aee4-996c8b27ccfc + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/02108c84-3b51-42bf-ab0e-80a31d16c2b2 method: DELETE response: - body: '{"message":"resource is not found","resource":"dhcp","resource_id":"4a889438-daf1-417e-aee4-996c8b27ccfc","type":"not_found"}' + body: '{"message":"resource is not found","resource":"dhcp","resource_id":"02108c84-3b51-42bf-ab0e-80a31d16c2b2","type":"not_found"}' headers: Content-Length: - "125" @@ -3431,7 +3392,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:05 GMT + - Fri, 27 Oct 2023 08:48:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3441,7 +3402,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6770cde-f58c-4f5a-8fac-1f06b4f703be + - a75e1ac8-ff0f-41ba-942c-48a2790b606e status: 404 Not Found code: 404 duration: "" @@ -3450,12 +3411,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/86efc927-4816-4b90-b1b0-b184079e15ed + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2a74d20c-a2cd-4078-b58b-93db631444e3 method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:54:50.160667Z","gateway_networks":[],"id":"86efc927-4816-4b90-b1b0-b184079e15ed","ip":{"address":"51.158.65.159","created_at":"2023-10-20T14:54:49.962464Z","gateway_id":"86efc927-4816-4b90-b1b0-b184079e15ed","id":"f5a1fd31-4400-4fa1-8432-b312cfd012cd","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"159-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:54:49.962464Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:55:01.868988Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:47:27.548696Z","gateway_networks":[],"id":"2a74d20c-a2cd-4078-b58b-93db631444e3","ip":{"address":"212.47.226.36","created_at":"2023-10-27T08:47:27.363624Z","gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"62af1417-86bf-4d31-b332-2062147923d9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"36-226-47-212.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:47:27.363624Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:47:36.899931Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - "968" @@ -3464,7 +3425,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:05 GMT + - Fri, 27 Oct 2023 08:48:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3474,7 +3435,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23965f72-40ec-444b-96ea-4de7a7fdb912 + - 0cced121-0b44-4179-8574-6c6f77b186bc status: 200 OK code: 200 duration: "" @@ -3483,9 +3444,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/86efc927-4816-4b90-b1b0-b184079e15ed?cleanup_dhcp=false + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2a74d20c-a2cd-4078-b58b-93db631444e3?cleanup_dhcp=false method: DELETE response: body: "" @@ -3495,7 +3456,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:06 GMT + - Fri, 27 Oct 2023 08:48:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3505,7 +3466,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c792467-8d88-44cd-835c-ea91e12e31cf + - 312fed5e-fad1-4a04-8100-7d68fbf21c34 status: 204 No Content code: 204 duration: "" @@ -3514,21 +3475,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/86efc927-4816-4b90-b1b0-b184079e15ed + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2a74d20c-a2cd-4078-b58b-93db631444e3 method: GET response: - body: '{"message":"resource is not found","resource":"gateway","resource_id":"86efc927-4816-4b90-b1b0-b184079e15ed","type":"not_found"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T08:47:27.548696Z","gateway_networks":[],"id":"2a74d20c-a2cd-4078-b58b-93db631444e3","ip":{"address":"212.47.226.36","created_at":"2023-10-27T08:47:27.363624Z","gateway_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","id":"62af1417-86bf-4d31-b332-2062147923d9","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"36-226-47-212.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T08:47:27.363624Z","zone":"fr-par-1"},"is_legacy":true,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"deleting","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T08:48:32.153514Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "128" + - "969" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:06 GMT + - Fri, 27 Oct 2023 08:48:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3538,28 +3499,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a0e8b69-8021-4a8b-841e-867e08cd5d52 - status: 404 Not Found - code: 404 + - 812b1df5-1799-4db8-b3c5-e8735780a752 + status: 200 OK + code: 200 duration: "" - request: body: "" form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/f5a1fd31-4400-4fa1-8432-b312cfd012cd - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375 + method: GET response: - body: "" + body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON + scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:47:27.847300+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-festive-villani","id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"402","node_id":"2","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bb:d3","maintenances":[],"modification_date":"2023-10-27T08:48:26.944616+00:00","name":"tf-srv-festive-villani","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.14.3","private_nics":[{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:48:16.327787+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:47:27.847300+00:00","export_uri":null,"id":"8ca2f20f-d9c1-4c2a-a801-f3394397d703","modification_date":"2023-10-27T08:47:27.847300+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","name":"tf-srv-festive-villani"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "3128" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:06 GMT + - Fri, 27 Oct 2023 08:48:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3569,36 +3538,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a7b6340-9882-429e-9cf4-32937ca04801 - status: 204 No Content - code: 204 + - 8946cd3c-e37c-4072-9f74-fcc84482f86a + status: 200 OK + code: 200 duration: "" - request: body: "" form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/2a74d20c-a2cd-4078-b58b-93db631444e3 method: GET response: - body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON - scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:54:51.156669+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-competent-herschel","id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1902","node_id":"12","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b3:83","maintenances":[],"modification_date":"2023-10-20T14:56:00.838902+00:00","name":"tf-srv-competent-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.154.23","private_nics":[{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:45.815313+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:54:51.156669+00:00","export_uri":null,"id":"b1e88085-dd63-4615-bd5e-e0290130a466","modification_date":"2023-10-20T14:54:51.156669+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","name":"tf-srv-competent-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"2a74d20c-a2cd-4078-b58b-93db631444e3","type":"not_found"}' headers: Content-Length: - - "3141" + - "128" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:06 GMT + - Fri, 27 Oct 2023 08:48:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3608,36 +3571,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc2f096c-7979-4c7a-9b5b-ab59e2493dbb - status: 200 OK - code: 200 + - 68d2a338-c513-403d-88a1-156f737e4012 + status: 404 Not Found + code: 404 duration: "" - request: body: "" form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23 - method: GET + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/62af1417-86bf-4d31-b332-2062147923d9 + method: DELETE response: - body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON - scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:54:51.156669+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-competent-herschel","id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1902","node_id":"12","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b3:83","maintenances":[],"modification_date":"2023-10-20T14:56:00.838902+00:00","name":"tf-srv-competent-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.154.23","private_nics":[{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:45.815313+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:54:51.156669+00:00","export_uri":null,"id":"b1e88085-dd63-4615-bd5e-e0290130a466","modification_date":"2023-10-20T14:54:51.156669+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","name":"tf-srv-competent-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "3141" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:12 GMT + - Fri, 27 Oct 2023 08:48:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3647,36 +3602,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da3587f5-379c-4417-adc2-ec7ec3d7543b - status: 200 OK - code: 200 + - 1c26cc49-500b-48df-a4de-66a8cc557bff + status: 204 No Content + code: 204 duration: "" - request: body: "" form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:54:51.156669+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-competent-herschel","id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:47:27.847300+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-festive-villani","id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1902","node_id":"12","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b3:83","maintenances":[],"modification_date":"2023-10-20T14:56:00.838902+00:00","name":"tf-srv-competent-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.154.23","private_nics":[{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:45.815313+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:54:51.156669+00:00","export_uri":null,"id":"b1e88085-dd63-4615-bd5e-e0290130a466","modification_date":"2023-10-20T14:54:51.156669+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","name":"tf-srv-competent-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"402","node_id":"2","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bb:d3","maintenances":[],"modification_date":"2023-10-27T08:48:26.944616+00:00","name":"tf-srv-festive-villani","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.14.3","private_nics":[{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:48:16.327787+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:47:27.847300+00:00","export_uri":null,"id":"8ca2f20f-d9c1-4c2a-a801-f3394397d703","modification_date":"2023-10-27T08:47:27.847300+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","name":"tf-srv-festive-villani"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3141" + - "3128" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:17 GMT + - Fri, 27 Oct 2023 08:48:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3686,7 +3641,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5546201-54a0-46fc-99c0-0810a7aa2b63 + - 888e873d-f37f-4c2e-8989-463a08254088 status: 200 OK code: 200 duration: "" @@ -3695,27 +3650,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:54:51.156669+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-competent-herschel","id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:47:27.847300+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-festive-villani","id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1902","node_id":"12","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b3:83","maintenances":[],"modification_date":"2023-10-20T14:56:00.838902+00:00","name":"tf-srv-competent-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.154.23","private_nics":[{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:45.815313+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:54:51.156669+00:00","export_uri":null,"id":"b1e88085-dd63-4615-bd5e-e0290130a466","modification_date":"2023-10-20T14:54:51.156669+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","name":"tf-srv-competent-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"402","node_id":"2","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bb:d3","maintenances":[],"modification_date":"2023-10-27T08:48:26.944616+00:00","name":"tf-srv-festive-villani","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.14.3","private_nics":[{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:48:16.327787+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:47:27.847300+00:00","export_uri":null,"id":"8ca2f20f-d9c1-4c2a-a801-f3394397d703","modification_date":"2023-10-27T08:47:27.847300+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","name":"tf-srv-festive-villani"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3141" + - "3128" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:22 GMT + - Fri, 27 Oct 2023 08:48:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3725,7 +3680,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75a06122-7a72-4b9f-a198-c275f49ceeb6 + - 91affc69-eb6e-44fb-b705-6965fc2cdf0c status: 200 OK code: 200 duration: "" @@ -3734,27 +3689,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:54:51.156669+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-competent-herschel","id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:47:27.847300+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-festive-villani","id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1902","node_id":"12","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b3:83","maintenances":[],"modification_date":"2023-10-20T14:56:00.838902+00:00","name":"tf-srv-competent-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.154.23","private_nics":[{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:45.815313+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:54:51.156669+00:00","export_uri":null,"id":"b1e88085-dd63-4615-bd5e-e0290130a466","modification_date":"2023-10-20T14:54:51.156669+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","name":"tf-srv-competent-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"402","node_id":"2","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bb:d3","maintenances":[],"modification_date":"2023-10-27T08:48:26.944616+00:00","name":"tf-srv-festive-villani","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.14.3","private_nics":[{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:48:16.327787+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:47:27.847300+00:00","export_uri":null,"id":"8ca2f20f-d9c1-4c2a-a801-f3394397d703","modification_date":"2023-10-27T08:47:27.847300+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","name":"tf-srv-festive-villani"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3141" + - "3128" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:27 GMT + - Fri, 27 Oct 2023 08:48:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3764,7 +3719,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe5f2c19-2c05-467a-a7f7-a10475d10421 + - 7a577659-c264-4721-b5e1-2c9bdf0ca951 status: 200 OK code: 200 duration: "" @@ -3773,27 +3728,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375 method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:54:51.156669+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-competent-herschel","id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:47:27.847300+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-festive-villani","id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1902","node_id":"12","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b3:83","maintenances":[],"modification_date":"2023-10-20T14:56:00.838902+00:00","name":"tf-srv-competent-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.154.23","private_nics":[{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:45.815313+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:54:51.156669+00:00","export_uri":null,"id":"b1e88085-dd63-4615-bd5e-e0290130a466","modification_date":"2023-10-20T14:54:51.156669+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","name":"tf-srv-competent-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"402","node_id":"2","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:bb:d3","maintenances":[],"modification_date":"2023-10-27T08:48:26.944616+00:00","name":"tf-srv-festive-villani","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.68.14.3","private_nics":[{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:48:16.327787+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:47:27.847300+00:00","export_uri":null,"id":"8ca2f20f-d9c1-4c2a-a801-f3394397d703","modification_date":"2023-10-27T08:47:27.847300+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","name":"tf-srv-festive-villani"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3141" + - "3128" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:33 GMT + - Fri, 27 Oct 2023 08:48:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3803,7 +3758,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be65138f-6cef-4d27-a498-4814ffd7d428 + - 3118dfcc-94eb-40ec-a177-bc42e1beb3e2 status: 200 OK code: 200 duration: "" @@ -3812,27 +3767,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375 method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:54:51.156669+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-competent-herschel","id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:47:27.847300+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-festive-villani","id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:b3:83","maintenances":[],"modification_date":"2023-10-20T14:56:34.170552+00:00","name":"tf-srv-competent-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:45.815313+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:54:51.156669+00:00","export_uri":null,"id":"b1e88085-dd63-4615-bd5e-e0290130a466","modification_date":"2023-10-20T14:54:51.156669+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","name":"tf-srv-competent-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:bb:d3","maintenances":[],"modification_date":"2023-10-27T08:48:56.487256+00:00","name":"tf-srv-festive-villani","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:48:16.327787+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:47:27.847300+00:00","export_uri":null,"id":"8ca2f20f-d9c1-4c2a-a801-f3394397d703","modification_date":"2023-10-27T08:47:27.847300+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","name":"tf-srv-festive-villani"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3018" + - "3009" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:38 GMT + - Fri, 27 Oct 2023 08:48:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3842,7 +3797,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28746826-f6db-4529-8e27-dd6c3de9e6e0 + - 9bc6acc4-cd74-41d5-b034-fd3a847ff055 status: 200 OK code: 200 duration: "" @@ -3851,12 +3806,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:45.815313+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:48:16.327787+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "381" @@ -3865,9 +3820,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:38 GMT + - Fri, 27 Oct 2023 08:48:58 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -3878,7 +3833,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f05e100-01ce-4282-a0e1-732fd8fccd73 + - 98452e96-a292-440f-8f09-ff17f06b3287 X-Total-Count: - "1" status: 200 OK @@ -3889,12 +3844,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/private_nics/2ec5400d-73fa-4bbd-8672-f73c95eafab8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/private_nics/2512af22-d2d5-4413-91d3-dc46fdafc8ef method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:55:14.592601+00:00","id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","mac_address":"02:00:00:14:58:21","modification_date":"2023-10-20T14:55:45.815313+00:00","private_network_id":"4acd338e-6465-4dc3-a997-5e31625a283c","server_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T08:47:44.938346+00:00","id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","mac_address":"02:00:00:14:73:fa","modification_date":"2023-10-27T08:48:16.327787+00:00","private_network_id":"1854988a-8aaf-45a3-a953-74a043852df4","server_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "378" @@ -3903,7 +3858,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:38 GMT + - Fri, 27 Oct 2023 08:48:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3913,7 +3868,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b073ea8c-8d2d-4872-afd2-726c044459c8 + - 4fe1be93-27a1-4eb9-9164-0489b65c6409 status: 200 OK code: 200 duration: "" @@ -3922,9 +3877,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/private_nics/2ec5400d-73fa-4bbd-8672-f73c95eafab8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/private_nics/2512af22-d2d5-4413-91d3-dc46fdafc8ef method: DELETE response: body: "" @@ -3932,7 +3887,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 20 Oct 2023 14:56:38 GMT + - Fri, 27 Oct 2023 08:48:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3942,7 +3897,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f002cf67-5ae0-4a3e-9c50-4ae9984047bf + - ed975820-5023-454c-b403-702c3008aab6 status: 204 No Content code: 204 duration: "" @@ -3951,12 +3906,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23/private_nics/2ec5400d-73fa-4bbd-8672-f73c95eafab8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375/private_nics/2512af22-d2d5-4413-91d3-dc46fdafc8ef method: GET response: - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"2ec5400d-73fa-4bbd-8672-f73c95eafab8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"2512af22-d2d5-4413-91d3-dc46fdafc8ef","type":"not_found"}' headers: Content-Length: - "148" @@ -3965,7 +3920,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:38 GMT + - Fri, 27 Oct 2023 08:48:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3975,7 +3930,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21d13c86-4620-4bb6-b0c4-e7ef77ac19ac + - 5ae2c5fa-467d-4e42-8d51-19cfc83d3589 status: 404 Not Found code: 404 duration: "" @@ -3984,27 +3939,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375 method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:54:51.156669+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-competent-herschel","id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T08:47:27.847300+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"tf-srv-festive-villani","id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","image":{"arch":"x86_64","creation_date":"2023-08-08T13:33:54.403199+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"e61b1d27-f80a-4cfd-9121-39f695f3bc68","modification_date":"2023-08-08T13:33:54.403199+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e2ae7926-f93d-4d02-b859-84b2a13a060b","name":"Ubuntu - 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:b3:83","maintenances":[],"modification_date":"2023-10-20T14:56:34.170552+00:00","name":"tf-srv-competent-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:54:51.156669+00:00","export_uri":null,"id":"b1e88085-dd63-4615-bd5e-e0290130a466","modification_date":"2023-10-20T14:54:51.156669+00:00","name":"Ubuntu - 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","name":"tf-srv-competent-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:bb:d3","maintenances":[],"modification_date":"2023-10-27T08:48:56.487256+00:00","name":"tf-srv-festive-villani","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T08:47:27.847300+00:00","export_uri":null,"id":"8ca2f20f-d9c1-4c2a-a801-f3394397d703","modification_date":"2023-10-27T08:47:27.847300+00:00","name":"Ubuntu + 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","name":"tf-srv-festive-villani"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2657" + - "2648" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:38 GMT + - Fri, 27 Oct 2023 08:48:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4014,7 +3969,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c881b20c-ccb4-4b0a-9992-49f89fd26836 + - 7db3bbc7-1fc4-4680-b857-95161d852bb2 status: 200 OK code: 200 duration: "" @@ -4023,9 +3978,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375 method: DELETE response: body: "" @@ -4033,7 +3988,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 20 Oct 2023 14:56:39 GMT + - Fri, 27 Oct 2023 08:48:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4043,7 +3998,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04e67d05-d6ee-406f-a203-f07cfb47c61d + - 3758d241-0f16-4603-b7d6-71ac80ad1d7a status: 204 No Content code: 204 duration: "" @@ -4052,12 +4007,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ecb2519f-8895-4a13-8fcf-397d1c95e375 method: GET response: - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"1b4cdcb9-fe4e-4132-aa04-39b4a93a4d23","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"ecb2519f-8895-4a13-8fcf-397d1c95e375","type":"not_found"}' headers: Content-Length: - "143" @@ -4066,7 +4021,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:39 GMT + - Fri, 27 Oct 2023 08:48:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4076,7 +4031,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f80cd1b-0626-4bce-a033-303056b565a3 + - 0788c765-8f9e-494d-8b53-d3c2ba8d32bb status: 404 Not Found code: 404 duration: "" @@ -4085,9 +4040,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b1e88085-dd63-4615-bd5e-e0290130a466 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8ca2f20f-d9c1-4c2a-a801-f3394397d703 method: DELETE response: body: "" @@ -4095,7 +4050,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 20 Oct 2023 14:56:39 GMT + - Fri, 27 Oct 2023 08:48:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4105,7 +4060,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ff25fe3-3d02-4ee4-80a6-005004776fba + - 9eeb83de-f2d6-4a90-9ef6-733d61d5900a status: 204 No Content code: 204 duration: "" @@ -4114,9 +4069,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4acd338e-6465-4dc3-a997-5e31625a283c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1854988a-8aaf-45a3-a953-74a043852df4 method: DELETE response: body: "" @@ -4126,7 +4081,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:39 GMT + - Fri, 27 Oct 2023 08:48:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4136,7 +4091,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2b1be0a-f260-48d6-8a61-7f2a5c968af9 + - 32b79931-163b-42ec-8f4a-ca49e29bb723 status: 204 No Content code: 204 duration: "" @@ -4145,12 +4100,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/9689c9d4-1a46-4877-b567-bbf4965806f9 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/ead05609-64ac-47fa-a04d-ca284c8d6ba7 method: GET response: - body: '{"message":"resource is not found","resource":"dhcp_entry","resource_id":"9689c9d4-1a46-4877-b567-bbf4965806f9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"dhcp_entry","resource_id":"ead05609-64ac-47fa-a04d-ca284c8d6ba7","type":"not_found"}' headers: Content-Length: - "131" @@ -4159,7 +4114,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:56:39 GMT + - Fri, 27 Oct 2023 08:48:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -4169,7 +4124,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f275d451-a59f-4364-8143-417050f9f686 + - 4637e57a-5fdf-4bc8-a505-372e578ab9c8 status: 404 Not Found code: 404 duration: "" From a86114144f4465d442f75bf477addc7074583cca Mon Sep 17 00:00:00 2001 From: Yacine FODIL Date: Fri, 27 Oct 2023 11:21:53 +0200 Subject: [PATCH 3/5] update cassette --- ...teway-pat-rule-with-instance.cassette.yaml | 1373 ++++++++--------- 1 file changed, 683 insertions(+), 690 deletions(-) diff --git a/scaleway/testdata/vpc-public-gateway-pat-rule-with-instance.cassette.yaml b/scaleway/testdata/vpc-public-gateway-pat-rule-with-instance.cassette.yaml index c434f6af9e..353e941aea 100644 --- a/scaleway/testdata/vpc-public-gateway-pat-rule-with-instance.cassette.yaml +++ b/scaleway/testdata/vpc-public-gateway-pat-rule-with-instance.cassette.yaml @@ -2,18 +2,18 @@ version: 1 interactions: - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"10.0.0.0/24","address":null,"pool_low":null,"pool_high":null,"enable_dynamic":null,"valid_lifetime":null,"renew_timer":null,"rebind_timer":null,"push_default_route":null,"push_dns_server":null,"dns_servers_override":null,"dns_search":null,"dns_local_name":null}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"10.0.0.0/24","address":null,"pool_low":null,"pool_high":null,"enable_dynamic":null,"valid_lifetime":null,"renew_timer":null,"rebind_timer":null,"push_default_route":null,"push_dns_server":null,"dns_servers_override":null,"dns_search":null,"dns_local_name":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps method: POST response: - body: '{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"}' headers: Content-Length: - "574" @@ -22,7 +22,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:26 GMT + - Fri, 27 Oct 2023 09:19:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -32,7 +32,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a28597e-d2c4-442a-b262-704938f95365 + - c10234c0-b484-4ec5-a272-c2746baf441d status: 200 OK code: 200 duration: "" @@ -41,12 +41,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/32426185-49c2-4047-a113-32594639fbf2 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/9905b816-982c-4533-95df-9c1fb6652616 method: GET response: - body: '{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"}' headers: Content-Length: - "574" @@ -55,7 +55,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:26 GMT + - Fri, 27 Oct 2023 09:19:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -65,32 +65,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2383a875-6929-446e-b047-d84b7cfc389f + - 63b6a6f9-acd4-4830-ab61-7d0936879939 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":null}' + body: '{"name":"My Private Network","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null,"subnets":null,"vpc_id":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"address":"51.15.245.191","created_at":"2023-10-20T14:18:26.936140Z","gateway_id":null,"id":"52b38e88-8e0b-4580-8776-8b524fc7aca3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"191-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.936140Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:19:49.667169Z","dhcp_enabled":true,"id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","name":"My + Private Network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T09:19:49.667169Z","id":"de489d07-0287-4658-860f-6125d7ecb7e0","subnet":"172.16.68.0/22","updated_at":"2023-10-27T09:19:49.667169Z"},{"created_at":"2023-10-27T09:19:49.667169Z","id":"0cb1d3db-cf3e-4571-914e-8d8fdd6951bd","subnet":"fd46:78ab:30b8:f7b5::/64","updated_at":"2023-10-27T09:19:49.667169Z"}],"tags":[],"updated_at":"2023-10-27T09:19:49.667169Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "367" + - "719" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:26 GMT + - Fri, 27 Oct 2023 09:19:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -100,30 +101,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 191ef71a-a283-47f3-8f9a-8f3dbfccc017 + - cb652a47-1fae-489a-939d-8d2fa850a700 status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/52b38e88-8e0b-4580-8776-8b524fc7aca3 - method: GET + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips + method: POST response: - body: '{"address":"51.15.245.191","created_at":"2023-10-20T14:18:26.936140Z","gateway_id":null,"id":"52b38e88-8e0b-4580-8776-8b524fc7aca3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"191-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.936140Z","zone":"fr-par-1"}' + body: '{"address":"51.158.103.254","created_at":"2023-10-27T09:19:50.275799Z","gateway_id":null,"id":"57d892b9-1f4d-4e63-be19-8f3646cc417b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"254-103-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:19:50.275799Z","zone":"fr-par-1"}' headers: Content-Length: - - "367" + - "369" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:26 GMT + - Fri, 27 Oct 2023 09:19:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -133,34 +136,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17dda731-8fa3-4051-a6f2-fac42e46cc97 + - 98f45b98-5d67-49b3-bfc0-e0784bebd948 status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"The Public - Gateway","tags":null,"type":"VPC-GW-S","upstream_dns_servers":null,"ip_id":"52b38e88-8e0b-4580-8776-8b524fc7aca3","enable_smtp":false,"enable_bastion":false,"bastion_port":null}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways - method: POST + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/57d892b9-1f4d-4e63-be19-8f3646cc417b + method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.035978Z","gateway_networks":[],"id":"38056808-01b1-40cd-9c29-0ef6cd790859","ip":{"address":"51.15.245.191","created_at":"2023-10-20T14:18:26.936140Z","gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"52b38e88-8e0b-4580-8776-8b524fc7aca3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"191-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.936140Z","zone":"fr-par-1"},"is_legacy":false,"name":"The - Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:27.035978Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' + body: '{"address":"51.158.103.254","created_at":"2023-10-27T09:19:50.275799Z","gateway_id":null,"id":"57d892b9-1f4d-4e63-be19-8f3646cc417b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"254-103-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:19:50.275799Z","zone":"fr-par-1"}' headers: Content-Length: - - "981" + - "369" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:27 GMT + - Fri, 27 Oct 2023 09:19:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -170,7 +169,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd661a2c-71fc-4d62-9c0a-d37e87de54ee + - 3312383e-8ba5-45ab-b354-32be81aecbde status: 200 OK code: 200 duration: "" @@ -179,22 +178,22 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/38056808-01b1-40cd-9c29-0ef6cd790859 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b8a24e1f-a121-4288-b171-6ba30a5f9ced method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.035978Z","gateway_networks":[],"id":"38056808-01b1-40cd-9c29-0ef6cd790859","ip":{"address":"51.15.245.191","created_at":"2023-10-20T14:18:26.936140Z","gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"52b38e88-8e0b-4580-8776-8b524fc7aca3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"191-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.936140Z","zone":"fr-par-1"},"is_legacy":false,"name":"The - Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:27.079216Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:19:49.667169Z","dhcp_enabled":true,"id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","name":"My + Private Network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T09:19:49.667169Z","id":"de489d07-0287-4658-860f-6125d7ecb7e0","subnet":"172.16.68.0/22","updated_at":"2023-10-27T09:19:49.667169Z"},{"created_at":"2023-10-27T09:19:49.667169Z","id":"0cb1d3db-cf3e-4571-914e-8d8fdd6951bd","subnet":"fd46:78ab:30b8:f7b5::/64","updated_at":"2023-10-27T09:19:49.667169Z"}],"tags":[],"updated_at":"2023-10-27T09:19:49.667169Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "984" + - "719" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:27 GMT + - Fri, 27 Oct 2023 09:19:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -204,33 +203,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 638d61e1-ebc0-47f7-b021-c9189e0158ea + - 72e866ee-40f5-47ac-a073-e7df2931eb25 status: 200 OK code: 200 duration: "" - request: - body: '{"name":"My Private Network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":null,"subnets":null,"vpc_id":null}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=debian_bullseye&order_by=created_at_asc&type=instance_local&zone=fr-par-1 + method: GET response: - body: '{"created_at":"2023-10-20T14:18:26.291733Z","dhcp_enabled":true,"id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","name":"My - Private Network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T14:18:26.291733Z","id":"52cf5211-72fc-4c11-920a-ace8324198f1","subnet":"172.16.92.0/22","updated_at":"2023-10-20T14:18:26.291733Z"},{"created_at":"2023-10-20T14:18:26.291733Z","id":"e81a0a9b-9573-4a40-a27a-712a7f43ec84","subnet":"fd5f:519c:6d46:40e3::/64","updated_at":"2023-10-20T14:18:26.291733Z"}],"tags":[],"updated_at":"2023-10-20T14:18:26.291733Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G"],"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","label":"debian_bullseye","type":"unknown_type","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"7691a260-ab4a-4692-8c54-862e08826deb","label":"debian_bullseye","type":"unknown_type","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "719" + - "1262" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:27 GMT + - Fri, 27 Oct 2023 09:19:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -240,31 +236,34 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3b98f0f-d5bf-4d01-bb50-56b2bebf4e89 + - f8d281a8-5300-4278-85b5-12fe21b194c4 status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"The Public + Gateway","tags":null,"type":"VPC-GW-S","upstream_dns_servers":null,"ip_id":"57d892b9-1f4d-4e63-be19-8f3646cc417b","enable_smtp":false,"enable_bastion":false,"bastion_port":null}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/951d085f-c13a-4075-b56c-7b566cc7d0e8 - method: GET + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways + method: POST response: - body: '{"created_at":"2023-10-20T14:18:26.291733Z","dhcp_enabled":true,"id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","name":"My - Private Network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T14:18:26.291733Z","id":"52cf5211-72fc-4c11-920a-ace8324198f1","subnet":"172.16.92.0/22","updated_at":"2023-10-20T14:18:26.291733Z"},{"created_at":"2023-10-20T14:18:26.291733Z","id":"e81a0a9b-9573-4a40-a27a-712a7f43ec84","subnet":"fd5f:519c:6d46:40e3::/64","updated_at":"2023-10-20T14:18:26.291733Z"}],"tags":[],"updated_at":"2023-10-20T14:18:26.291733Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:19:50.463377Z","gateway_networks":[],"id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","ip":{"address":"51.158.103.254","created_at":"2023-10-27T09:19:50.275799Z","gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"57d892b9-1f4d-4e63-be19-8f3646cc417b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"254-103-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:19:50.275799Z","zone":"fr-par-1"},"is_legacy":false,"name":"The + Public Gateway","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:19:50.463377Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' headers: Content-Length: - - "719" + - "983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:27 GMT + - Fri, 27 Oct 2023 09:19:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -274,7 +273,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92da7b02-3da0-415d-8d0b-bddd0ba16b63 + - 41ad5028-0cf0-4907-8d7a-1c1f5c9286b3 status: 200 OK code: 200 duration: "" @@ -283,21 +282,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=debian_bullseye&order_by=created_at_asc&type=instance_local&zone=fr-par-1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G"],"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","label":"debian_bullseye","type":"unknown_type","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"7691a260-ab4a-4692-8c54-862e08826deb","label":"debian_bullseye","type":"unknown_type","zone":"fr-par-1"}],"total_count":2}' + body: '{"servers":{"DEV1-L":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-VIZ":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1,"mig_profile":null,"monthly_price":72,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":1,"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"START1-M":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"START1-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"START1-XS":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":25000000000}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}}}}' headers: Content-Length: - - "1262" + - "38421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:27 GMT + - Fri, 27 Oct 2023 09:19:50 GMT + Link: + - ; rel="next",; + rel="last" Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -307,7 +309,9 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8dd3616-245a-48ba-8d66-14c19433aba7 + - 88286796-1f46-4045-87c9-0d7c842eaffb + X-Total-Count: + - "56" status: 200 OK code: 200 duration: "" @@ -316,24 +320,22 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/3442e2a0-edcd-4bb6-b074-0e7edb22254c method: GET response: - body: '{"servers":{"DEV1-L":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-VIZ":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1,"mig_profile":null,"monthly_price":72,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["rescue","local"],"hot_snapshots_local_volume":false,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":1,"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"START1-M":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"START1-S":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"START1-XS":{"alt_names":[],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":25000000000}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","baremetal":false,"capabilities":{"block_storage":true,"boot_types":["bootscript","rescue","local"],"hot_snapshots_local_volume":true,"placement_groups":true,"private_network":8},"gpu":0,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":null},{"internal_bandwidth":null,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}}}}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:19:50.463377Z","gateway_networks":[],"id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","ip":{"address":"51.158.103.254","created_at":"2023-10-27T09:19:50.275799Z","gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"57d892b9-1f4d-4e63-be19-8f3646cc417b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"254-103-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:19:50.275799Z","zone":"fr-par-1"},"is_legacy":false,"name":"The + Public Gateway","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"allocating","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:19:50.463377Z","upstream_dns_servers":[],"version":null,"zone":"fr-par-1"}' headers: Content-Length: - - "38421" + - "983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:27 GMT - Link: - - ; rel="next",; - rel="last" + - Fri, 27 Oct 2023 09:19:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -343,9 +345,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1595b0df-56d4-4d85-a37a-bfc78f00a16d - X-Total-Count: - - "56" + - 3eda5afb-5389-47a0-b998-b61c3c850f1b status: 200 OK code: 200 duration: "" @@ -354,7 +354,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET @@ -368,7 +368,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:27 GMT + - Fri, 27 Oct 2023 09:19:50 GMT Link: - ; rel="first",; rel="previous",; rel="last" @@ -381,32 +381,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3be25689-1c7c-4336-9f77-cbcae8e72295 + - 8f9f369a-d3f4-4903-9fd7-1397e1f4f16e X-Total-Count: - "56" status: 200 OK code: 200 duration: "" - request: - body: '{"name":"Scaleway Instance","dynamic_ip_required":false,"routed_ip_enabled":false,"commercial_type":"DEV1-S","image":"92e694e8-5f29-420f-b48d-c3cb88de283d","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"Scaleway Instance","dynamic_ip_required":false,"routed_ip_enabled":false,"commercial_type":"DEV1-S","image":"92e694e8-5f29-420f-b48d-c3cb88de283d","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.472674+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"e6c098b1-27fb-4122-a199-67a4b10a2860","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:19:51.076352+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"098846b5-7816-4025-9b0d-fed4391018de","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:b1:77","maintenances":[],"modification_date":"2023-10-20T14:18:28.472674+00:00","name":"Scaleway - Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.472674+00:00","export_uri":null,"id":"87f51bef-dd4c-4d60-a2ca-fb33696ef6b0","modification_date":"2023-10-20T14:18:28.472674+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"e6c098b1-27fb-4122-a199-67a4b10a2860","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:be:51","maintenances":[],"modification_date":"2023-10-27T09:19:51.076352+00:00","name":"Scaleway + Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:19:51.076352+00:00","export_uri":null,"id":"f8850b0a-6bf1-4423-b6b4-dedbcaf24282","modification_date":"2023-10-27T09:19:51.076352+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"098846b5-7816-4025-9b0d-fed4391018de","name":"Scaleway Instance"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: @@ -416,9 +416,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:29 GMT + - Fri, 27 Oct 2023 09:19:51 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -428,7 +428,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3805f581-2a0b-4d51-8d01-9f9ab400e639 + - 297a0234-95e1-4a06-8ada-764487034001 status: 201 Created code: 201 duration: "" @@ -437,19 +437,19 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.472674+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"e6c098b1-27fb-4122-a199-67a4b10a2860","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:19:51.076352+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"098846b5-7816-4025-9b0d-fed4391018de","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:b1:77","maintenances":[],"modification_date":"2023-10-20T14:18:28.472674+00:00","name":"Scaleway - Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.472674+00:00","export_uri":null,"id":"87f51bef-dd4c-4d60-a2ca-fb33696ef6b0","modification_date":"2023-10-20T14:18:28.472674+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"e6c098b1-27fb-4122-a199-67a4b10a2860","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:be:51","maintenances":[],"modification_date":"2023-10-27T09:19:51.076352+00:00","name":"Scaleway + Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:19:51.076352+00:00","export_uri":null,"id":"f8850b0a-6bf1-4423-b6b4-dedbcaf24282","modification_date":"2023-10-27T09:19:51.076352+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"098846b5-7816-4025-9b0d-fed4391018de","name":"Scaleway Instance"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: @@ -459,7 +459,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:29 GMT + - Fri, 27 Oct 2023 09:19:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -469,7 +469,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebe43f74-467f-4dfa-a129-0eb7fc778cf0 + - e5bf3f07-47cd-4dca-99b8-595fa7750db6 status: 200 OK code: 200 duration: "" @@ -478,19 +478,19 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.472674+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"e6c098b1-27fb-4122-a199-67a4b10a2860","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:19:51.076352+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"098846b5-7816-4025-9b0d-fed4391018de","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:b1:77","maintenances":[],"modification_date":"2023-10-20T14:18:28.472674+00:00","name":"Scaleway - Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.472674+00:00","export_uri":null,"id":"87f51bef-dd4c-4d60-a2ca-fb33696ef6b0","modification_date":"2023-10-20T14:18:28.472674+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"e6c098b1-27fb-4122-a199-67a4b10a2860","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:be:51","maintenances":[],"modification_date":"2023-10-27T09:19:51.076352+00:00","name":"Scaleway + Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:19:51.076352+00:00","export_uri":null,"id":"f8850b0a-6bf1-4423-b6b4-dedbcaf24282","modification_date":"2023-10-27T09:19:51.076352+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"098846b5-7816-4025-9b0d-fed4391018de","name":"Scaleway Instance"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: @@ -500,7 +500,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:29 GMT + - Fri, 27 Oct 2023 09:19:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -510,7 +510,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99d629d2-79b7-4775-9bfb-691cabda4ca7 + - 0f7071a3-ca1c-436e-82cf-5153b5dd01d1 status: 200 OK code: 200 duration: "" @@ -521,12 +521,12 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de/action method: POST response: - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/e6c098b1-27fb-4122-a199-67a4b10a2860/action","href_result":"/servers/e6c098b1-27fb-4122-a199-67a4b10a2860","id":"1fc783e4-d358-4be5-8d97-a6fed602cfa4","started_at":"2023-10-20T14:18:29.893360+00:00","status":"pending","terminated_at":null}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/098846b5-7816-4025-9b0d-fed4391018de/action","href_result":"/servers/098846b5-7816-4025-9b0d-fed4391018de","id":"734e48f5-59b1-41e0-92b9-1775e2b8a567","started_at":"2023-10-27T09:19:52.046526+00:00","status":"pending","terminated_at":null}}' headers: Content-Length: - "322" @@ -535,9 +535,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:29 GMT + - Fri, 27 Oct 2023 09:19:52 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1fc783e4-d358-4be5-8d97-a6fed602cfa4 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/734e48f5-59b1-41e0-92b9-1775e2b8a567 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -547,7 +547,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dbd20e42-fbb4-4f4c-ab77-1a1d5be45321 + - cefb6297-b0d8-46d3-ab8f-e49013c064da status: 202 Accepted code: 202 duration: "" @@ -556,19 +556,19 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.472674+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"e6c098b1-27fb-4122-a199-67a4b10a2860","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:19:51.076352+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"098846b5-7816-4025-9b0d-fed4391018de","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:b1:77","maintenances":[],"modification_date":"2023-10-20T14:18:29.472857+00:00","name":"Scaleway - Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.472674+00:00","export_uri":null,"id":"87f51bef-dd4c-4d60-a2ca-fb33696ef6b0","modification_date":"2023-10-20T14:18:28.472674+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"e6c098b1-27fb-4122-a199-67a4b10a2860","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:be:51","maintenances":[],"modification_date":"2023-10-27T09:19:51.745031+00:00","name":"Scaleway + Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:19:51.076352+00:00","export_uri":null,"id":"f8850b0a-6bf1-4423-b6b4-dedbcaf24282","modification_date":"2023-10-27T09:19:51.076352+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"098846b5-7816-4025-9b0d-fed4391018de","name":"Scaleway Instance"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: @@ -578,7 +578,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:30 GMT + - Fri, 27 Oct 2023 09:19:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -588,7 +588,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a030b9f-4520-4aaf-ae69-4b72691d289d + - afe8920f-07e3-4bed-9b5b-7f72d75b891c status: 200 OK code: 200 duration: "" @@ -597,22 +597,22 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/38056808-01b1-40cd-9c29-0ef6cd790859 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/3442e2a0-edcd-4bb6-b074-0e7edb22254c method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.035978Z","gateway_networks":[],"id":"38056808-01b1-40cd-9c29-0ef6cd790859","ip":{"address":"51.15.245.191","created_at":"2023-10-20T14:18:26.936140Z","gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"52b38e88-8e0b-4580-8776-8b524fc7aca3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"191-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.936140Z","zone":"fr-par-1"},"is_legacy":false,"name":"The - Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:27.803599Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:19:50.463377Z","gateway_networks":[],"id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","ip":{"address":"51.158.103.254","created_at":"2023-10-27T09:19:50.275799Z","gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"57d892b9-1f4d-4e63-be19-8f3646cc417b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"254-103-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:19:50.275799Z","zone":"fr-par-1"},"is_legacy":false,"name":"The + Public Gateway","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:19:51.254694Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "981" + - "983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:32 GMT + - Fri, 27 Oct 2023 09:19:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -622,7 +622,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c856d165-14e5-4281-bace-e76349169ac0 + - 5085acc8-7223-47b3-ba69-1bc3c4c0730c status: 200 OK code: 200 duration: "" @@ -631,22 +631,22 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/38056808-01b1-40cd-9c29-0ef6cd790859 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/3442e2a0-edcd-4bb6-b074-0e7edb22254c method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.035978Z","gateway_networks":[],"id":"38056808-01b1-40cd-9c29-0ef6cd790859","ip":{"address":"51.15.245.191","created_at":"2023-10-20T14:18:26.936140Z","gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"52b38e88-8e0b-4580-8776-8b524fc7aca3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"191-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.936140Z","zone":"fr-par-1"},"is_legacy":false,"name":"The - Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:27.803599Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:19:50.463377Z","gateway_networks":[],"id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","ip":{"address":"51.158.103.254","created_at":"2023-10-27T09:19:50.275799Z","gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"57d892b9-1f4d-4e63-be19-8f3646cc417b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"254-103-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:19:50.275799Z","zone":"fr-par-1"},"is_legacy":false,"name":"The + Public Gateway","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:19:51.254694Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "981" + - "983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:32 GMT + - Fri, 27 Oct 2023 09:19:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -656,7 +656,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dbc654dd-79c1-4786-9b04-5f0fc6aa30d9 + - 04b89fde-a32d-4997-8dde-18a8ae72c2a3 status: 200 OK code: 200 duration: "" @@ -665,22 +665,22 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/38056808-01b1-40cd-9c29-0ef6cd790859 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/3442e2a0-edcd-4bb6-b074-0e7edb22254c method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.035978Z","gateway_networks":[],"id":"38056808-01b1-40cd-9c29-0ef6cd790859","ip":{"address":"51.15.245.191","created_at":"2023-10-20T14:18:26.936140Z","gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"52b38e88-8e0b-4580-8776-8b524fc7aca3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"191-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.936140Z","zone":"fr-par-1"},"is_legacy":false,"name":"The - Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:27.803599Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:19:50.463377Z","gateway_networks":[],"id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","ip":{"address":"51.158.103.254","created_at":"2023-10-27T09:19:50.275799Z","gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"57d892b9-1f4d-4e63-be19-8f3646cc417b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"254-103-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:19:50.275799Z","zone":"fr-par-1"},"is_legacy":false,"name":"The + Public Gateway","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:19:51.254694Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "981" + - "983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:32 GMT + - Fri, 27 Oct 2023 09:19:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -690,23 +690,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3a35d03-4df9-4ff5-ae2b-c765ac57a7d8 + - 45e4b524-7f9b-4b6e-b391-645a9eb7d4b9 status: 200 OK code: 200 duration: "" - request: - body: '{"gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","enable_masquerade":true,"enable_dhcp":true,"dhcp_id":"32426185-49c2-4047-a113-32594639fbf2"}' + body: '{"gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","enable_masquerade":true,"enable_dhcp":true,"dhcp_id":"9905b816-982c-4533-95df-9c1fb6652616"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks method: POST response: - body: '{"address":null,"created_at":"2023-10-20T14:18:34.046806Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","ipam_config":null,"mac_address":null,"private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","status":"created","updated_at":"2023-10-20T14:18:34.046806Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T09:19:57.154011Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"dfbbd5d4-417b-4201-81ac-839de38905cb","ipam_config":null,"mac_address":null,"private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","status":"created","updated_at":"2023-10-27T09:19:57.154011Z","zone":"fr-par-1"}' headers: Content-Length: - "971" @@ -715,7 +715,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:34 GMT + - Fri, 27 Oct 2023 09:19:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -725,7 +725,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 123b05ee-7b5d-4470-be7b-1085ef5d8cda + - 49c228e2-a174-4eb8-b4c8-28dcf9efff34 status: 200 OK code: 200 duration: "" @@ -734,22 +734,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/38056808-01b1-40cd-9c29-0ef6cd790859 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.035978Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:18:34.046806Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","ipam_config":null,"mac_address":null,"private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","status":"created","updated_at":"2023-10-20T14:18:34.046806Z","zone":"fr-par-1"}],"id":"38056808-01b1-40cd-9c29-0ef6cd790859","ip":{"address":"51.15.245.191","created_at":"2023-10-20T14:18:26.936140Z","gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"52b38e88-8e0b-4580-8776-8b524fc7aca3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"191-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.936140Z","zone":"fr-par-1"},"is_legacy":true,"name":"The - Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:34.211742Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON + scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:19:51.076352+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"098846b5-7816-4025-9b0d-fed4391018de","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1701","node_id":"16","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:be:51","maintenances":[],"modification_date":"2023-10-27T09:19:51.745031+00:00","name":"Scaleway + Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.224.31","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:19:51.076352+00:00","export_uri":null,"id":"f8850b0a-6bf1-4423-b6b4-dedbcaf24282","modification_date":"2023-10-27T09:19:51.076352+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"098846b5-7816-4025-9b0d-fed4391018de","name":"Scaleway + Instance"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1955" + - "2738" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:34 GMT + - Fri, 27 Oct 2023 09:19:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -759,7 +766,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 518ffc4d-1d91-44e1-bc50-d3be6036d487 + - 6ba9c56c-9f80-4078-af1c-9bcc9350413b status: 200 OK code: 200 duration: "" @@ -768,29 +775,22 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/3442e2a0-edcd-4bb6-b074-0e7edb22254c method: GET response: - body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON - scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.472674+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"e6c098b1-27fb-4122-a199-67a4b10a2860","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian - Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:77","maintenances":[],"modification_date":"2023-10-20T14:18:29.472857+00:00","name":"Scaleway - Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.32.17","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.472674+00:00","export_uri":null,"id":"87f51bef-dd4c-4d60-a2ca-fb33696ef6b0","modification_date":"2023-10-20T14:18:28.472674+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"e6c098b1-27fb-4122-a199-67a4b10a2860","name":"Scaleway - Instance"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:19:50.463377Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T09:19:57.154011Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"dfbbd5d4-417b-4201-81ac-839de38905cb","ipam_config":null,"mac_address":null,"private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","status":"created","updated_at":"2023-10-27T09:19:57.154011Z","zone":"fr-par-1"}],"id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","ip":{"address":"51.158.103.254","created_at":"2023-10-27T09:19:50.275799Z","gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"57d892b9-1f4d-4e63-be19-8f3646cc417b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"254-103-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:19:50.275799Z","zone":"fr-par-1"},"is_legacy":true,"name":"The + Public Gateway","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:19:57.362159Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "2735" + - "1957" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:35 GMT + - Fri, 27 Oct 2023 09:19:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -800,7 +800,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30721daf-6c56-4b2c-8b42-b76465f77bf1 + - 0a414786-bcfc-49b2-aac7-451d803e02e5 status: 200 OK code: 200 duration: "" @@ -809,22 +809,22 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/38056808-01b1-40cd-9c29-0ef6cd790859 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/3442e2a0-edcd-4bb6-b074-0e7edb22254c method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.035978Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:18:34.046806Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","ipam_config":null,"mac_address":"02:00:00:14:57:CE","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","status":"ready","updated_at":"2023-10-20T14:18:36.984154Z","zone":"fr-par-1"}],"id":"38056808-01b1-40cd-9c29-0ef6cd790859","ip":{"address":"51.15.245.191","created_at":"2023-10-20T14:18:26.936140Z","gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"52b38e88-8e0b-4580-8776-8b524fc7aca3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"191-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.936140Z","zone":"fr-par-1"},"is_legacy":true,"name":"The - Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:37.102467Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:19:50.463377Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T09:19:57.154011Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"dfbbd5d4-417b-4201-81ac-839de38905cb","ipam_config":null,"mac_address":"02:00:00:14:74:1A","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","status":"configuring","updated_at":"2023-10-27T09:20:01.180151Z","zone":"fr-par-1"}],"id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","ip":{"address":"51.158.103.254","created_at":"2023-10-27T09:19:50.275799Z","gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"57d892b9-1f4d-4e63-be19-8f3646cc417b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"254-103-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:19:50.275799Z","zone":"fr-par-1"},"is_legacy":true,"name":"The + Public Gateway","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:19:57.362159Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "1964" + - "1976" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:39 GMT + - Fri, 27 Oct 2023 09:20:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -834,7 +834,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 988670f5-966b-4247-a46a-93aacdc3120c + - 970185e9-621d-4c6e-ae06-df14e38bce2d status: 200 OK code: 200 duration: "" @@ -843,21 +843,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/d6afbf3f-19c9-4b30-af0c-776d2871e1bb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:18:34.046806Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","ipam_config":null,"mac_address":"02:00:00:14:57:CE","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","status":"ready","updated_at":"2023-10-20T14:18:36.984154Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON + scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:19:51.076352+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"098846b5-7816-4025-9b0d-fed4391018de","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1701","node_id":"16","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:be:51","maintenances":[],"modification_date":"2023-10-27T09:19:51.745031+00:00","name":"Scaleway + Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.224.31","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:19:51.076352+00:00","export_uri":null,"id":"f8850b0a-6bf1-4423-b6b4-dedbcaf24282","modification_date":"2023-10-27T09:19:51.076352+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"098846b5-7816-4025-9b0d-fed4391018de","name":"Scaleway + Instance"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "984" + - "2738" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:39 GMT + - Fri, 27 Oct 2023 09:20:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -867,7 +875,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56ca0fc1-781b-4ed1-bd3d-4e19e488f1e1 + - 5d69fa2d-ff37-4200-8e5a-bb4d6bc81e3c status: 200 OK code: 200 duration: "" @@ -876,21 +884,22 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/d6afbf3f-19c9-4b30-af0c-776d2871e1bb + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/3442e2a0-edcd-4bb6-b074-0e7edb22254c method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:18:34.046806Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","ipam_config":null,"mac_address":"02:00:00:14:57:CE","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","status":"ready","updated_at":"2023-10-20T14:18:36.984154Z","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:19:50.463377Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T09:19:57.154011Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"dfbbd5d4-417b-4201-81ac-839de38905cb","ipam_config":null,"mac_address":"02:00:00:14:74:1A","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","status":"ready","updated_at":"2023-10-27T09:20:03.884564Z","zone":"fr-par-1"}],"id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","ip":{"address":"51.158.103.254","created_at":"2023-10-27T09:19:50.275799Z","gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"57d892b9-1f4d-4e63-be19-8f3646cc417b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"254-103-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:19:50.275799Z","zone":"fr-par-1"},"is_legacy":true,"name":"The + Public Gateway","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:20:04.051485Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "984" + - "1966" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:40 GMT + - Fri, 27 Oct 2023 09:20:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -900,7 +909,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1a92242-879c-4af1-a330-7f2960770678 + - 9d8337e5-542d-4faf-be9e-3c342668c13b status: 200 OK code: 200 duration: "" @@ -909,22 +918,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/38056808-01b1-40cd-9c29-0ef6cd790859 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/dfbbd5d4-417b-4201-81ac-839de38905cb method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.035978Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:18:34.046806Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","ipam_config":null,"mac_address":"02:00:00:14:57:CE","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","status":"ready","updated_at":"2023-10-20T14:18:36.984154Z","zone":"fr-par-1"}],"id":"38056808-01b1-40cd-9c29-0ef6cd790859","ip":{"address":"51.15.245.191","created_at":"2023-10-20T14:18:26.936140Z","gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"52b38e88-8e0b-4580-8776-8b524fc7aca3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"191-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.936140Z","zone":"fr-par-1"},"is_legacy":true,"name":"The - Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:37.102467Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T09:19:57.154011Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"dfbbd5d4-417b-4201-81ac-839de38905cb","ipam_config":null,"mac_address":"02:00:00:14:74:1A","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","status":"ready","updated_at":"2023-10-27T09:20:03.884564Z","zone":"fr-par-1"}' headers: Content-Length: - - "1964" + - "984" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:40 GMT + - Fri, 27 Oct 2023 09:20:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -934,7 +942,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11a691d5-d38d-4df7-9b91-be3fb60a1e48 + - 721c8acb-f097-48e2-b8fa-3e853078fb4b status: 200 OK code: 200 duration: "" @@ -943,21 +951,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/d6afbf3f-19c9-4b30-af0c-776d2871e1bb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:18:34.046806Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","ipam_config":null,"mac_address":"02:00:00:14:57:CE","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","status":"ready","updated_at":"2023-10-20T14:18:36.984154Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON + scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:19:51.076352+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"098846b5-7816-4025-9b0d-fed4391018de","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1701","node_id":"16","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:be:51","maintenances":[],"modification_date":"2023-10-27T09:20:04.786446+00:00","name":"Scaleway + Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.224.31","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:19:51.076352+00:00","export_uri":null,"id":"f8850b0a-6bf1-4423-b6b4-dedbcaf24282","modification_date":"2023-10-27T09:19:51.076352+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"098846b5-7816-4025-9b0d-fed4391018de","name":"Scaleway + Instance"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "984" + - "2769" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:40 GMT + - Fri, 27 Oct 2023 09:20:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -967,7 +983,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38d4e991-927f-4beb-98c4-874c78a503c1 + - 3eec3edb-ec11-4b02-94f6-c890d543f1d8 status: 200 OK code: 200 duration: "" @@ -976,29 +992,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/dfbbd5d4-417b-4201-81ac-839de38905cb method: GET response: - body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON - scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.472674+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"e6c098b1-27fb-4122-a199-67a4b10a2860","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian - Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:77","maintenances":[],"modification_date":"2023-10-20T14:18:29.472857+00:00","name":"Scaleway - Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.32.17","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.472674+00:00","export_uri":null,"id":"87f51bef-dd4c-4d60-a2ca-fb33696ef6b0","modification_date":"2023-10-20T14:18:28.472674+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"e6c098b1-27fb-4122-a199-67a4b10a2860","name":"Scaleway - Instance"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"address":null,"created_at":"2023-10-27T09:19:57.154011Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"dfbbd5d4-417b-4201-81ac-839de38905cb","ipam_config":null,"mac_address":"02:00:00:14:74:1A","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","status":"ready","updated_at":"2023-10-27T09:20:03.884564Z","zone":"fr-par-1"}' headers: Content-Length: - - "2735" + - "984" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:40 GMT + - Fri, 27 Oct 2023 09:20:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1008,7 +1016,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 702e49ca-4e2d-43f2-b776-cab49d8e7e9a + - f20d6fa4-130c-4071-b423-84783c8e274c status: 200 OK code: 200 duration: "" @@ -1017,29 +1025,22 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/3442e2a0-edcd-4bb6-b074-0e7edb22254c method: GET response: - body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON - scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.472674+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"e6c098b1-27fb-4122-a199-67a4b10a2860","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian - Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:77","maintenances":[],"modification_date":"2023-10-20T14:18:29.472857+00:00","name":"Scaleway - Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.32.17","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.472674+00:00","export_uri":null,"id":"87f51bef-dd4c-4d60-a2ca-fb33696ef6b0","modification_date":"2023-10-20T14:18:28.472674+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"e6c098b1-27fb-4122-a199-67a4b10a2860","name":"Scaleway - Instance"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:19:50.463377Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T09:19:57.154011Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"dfbbd5d4-417b-4201-81ac-839de38905cb","ipam_config":null,"mac_address":"02:00:00:14:74:1A","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","status":"ready","updated_at":"2023-10-27T09:20:03.884564Z","zone":"fr-par-1"}],"id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","ip":{"address":"51.158.103.254","created_at":"2023-10-27T09:19:50.275799Z","gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"57d892b9-1f4d-4e63-be19-8f3646cc417b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"254-103-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:19:50.275799Z","zone":"fr-par-1"},"is_legacy":true,"name":"The + Public Gateway","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:20:04.051485Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "2735" + - "1966" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:45 GMT + - Fri, 27 Oct 2023 09:20:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1049,7 +1050,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - acb43b48-90e2-4e16-b3ff-1506f51b4aeb + - 9a35c189-2ac5-44fd-9086-401091ac8bbc status: 200 OK code: 200 duration: "" @@ -1058,29 +1059,22 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b8a24e1f-a121-4288-b171-6ba30a5f9ced method: GET response: - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON - scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.472674+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"e6c098b1-27fb-4122-a199-67a4b10a2860","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian - Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:77","maintenances":[],"modification_date":"2023-10-20T14:18:45.667855+00:00","name":"Scaleway - Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.32.17","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.472674+00:00","export_uri":null,"id":"87f51bef-dd4c-4d60-a2ca-fb33696ef6b0","modification_date":"2023-10-20T14:18:28.472674+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"e6c098b1-27fb-4122-a199-67a4b10a2860","name":"Scaleway - Instance"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2023-10-27T09:19:49.667169Z","dhcp_enabled":true,"id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","name":"My + Private Network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T09:19:49.667169Z","id":"de489d07-0287-4658-860f-6125d7ecb7e0","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:56.143052Z"},{"created_at":"2023-10-27T09:19:49.667169Z","id":"0cb1d3db-cf3e-4571-914e-8d8fdd6951bd","subnet":"fd46:78ab:30b8:f7b5::/64","updated_at":"2023-10-27T09:19:56.148154Z"}],"tags":[],"updated_at":"2023-10-27T09:20:01.540972Z","vpc_id":"94132e03-8daf-4987-a793-e5382d24aa44"}' headers: Content-Length: - - "2766" + - "716" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:50 GMT + - Fri, 27 Oct 2023 09:20:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1090,7 +1084,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e7a1e00-6150-4153-bf4e-b1cd71bff4c6 + - 99bb92df-769c-401f-8977-e956f57d1cf3 status: 200 OK code: 200 duration: "" @@ -1099,22 +1093,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/951d085f-c13a-4075-b56c-7b566cc7d0e8 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/dfbbd5d4-417b-4201-81ac-839de38905cb method: GET response: - body: '{"created_at":"2023-10-20T14:18:26.291733Z","id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","name":"My - Private Network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":["10.0.0.0/24","fd5f:519c:6d46:40e3::/64"],"tags":[],"updated_at":"2023-10-20T14:18:36.675179Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T09:19:57.154011Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"dfbbd5d4-417b-4201-81ac-839de38905cb","ipam_config":null,"mac_address":"02:00:00:14:74:1A","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","status":"ready","updated_at":"2023-10-27T09:20:03.884564Z","zone":"fr-par-1"}' headers: Content-Length: - - "358" + - "984" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:50 GMT + - Fri, 27 Oct 2023 09:20:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1124,7 +1117,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3f1997f-609b-4ea9-8be7-869fb6f1ee4b + - 7fc49f58-10fe-4f91-a3b2-f824e352dabf status: 200 OK code: 200 duration: "" @@ -1133,29 +1126,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.472674+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"e6c098b1-27fb-4122-a199-67a4b10a2860","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:19:51.076352+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"098846b5-7816-4025-9b0d-fed4391018de","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:77","maintenances":[],"modification_date":"2023-10-20T14:18:45.667855+00:00","name":"Scaleway - Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.32.17","private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.472674+00:00","export_uri":null,"id":"87f51bef-dd4c-4d60-a2ca-fb33696ef6b0","modification_date":"2023-10-20T14:18:28.472674+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"e6c098b1-27fb-4122-a199-67a4b10a2860","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1701","node_id":"16","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:be:51","maintenances":[],"modification_date":"2023-10-27T09:20:04.786446+00:00","name":"Scaleway + Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.224.31","private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:19:51.076352+00:00","export_uri":null,"id":"f8850b0a-6bf1-4423-b6b4-dedbcaf24282","modification_date":"2023-10-27T09:19:51.076352+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"098846b5-7816-4025-9b0d-fed4391018de","name":"Scaleway Instance"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2766" + - "2769" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:50 GMT + - Fri, 27 Oct 2023 09:20:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1165,23 +1158,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa93f94f-9e5e-4a3f-9cac-9ff2fc5925dc + - 21c6e07b-9a3b-4120-b110-ae69a5eb8ee2 status: 200 OK code: 200 duration: "" - request: - body: '{"private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8"}' + body: '{"private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de/private_nics method: POST response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:18:51.027324+00:00","id":"c99d3bd0-86cc-4a85-9591-4bb630c9fd39","mac_address":"02:00:00:14:57:d1","modification_date":"2023-10-20T14:18:51.027324+00:00","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","server_id":"e6c098b1-27fb-4122-a199-67a4b10a2860","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:20:07.872536+00:00","id":"671b4e09-8d51-49e9-b29f-97a63b3ab666","mac_address":"02:00:00:14:74:1b","modification_date":"2023-10-27T09:20:07.872536+00:00","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","server_id":"098846b5-7816-4025-9b0d-fed4391018de","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1190,7 +1183,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:51 GMT + - Fri, 27 Oct 2023 09:20:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1200,7 +1193,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d4eba5f-1c9a-4c7d-b1bf-2ecb92671cd0 + - 850e86ef-3bff-4365-990a-bbde4c19fb3a status: 201 Created code: 201 duration: "" @@ -1209,12 +1202,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860/private_nics/c99d3bd0-86cc-4a85-9591-4bb630c9fd39 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de/private_nics/671b4e09-8d51-49e9-b29f-97a63b3ab666 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:18:51.027324+00:00","id":"c99d3bd0-86cc-4a85-9591-4bb630c9fd39","mac_address":"02:00:00:14:57:d1","modification_date":"2023-10-20T14:18:51.027324+00:00","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","server_id":"e6c098b1-27fb-4122-a199-67a4b10a2860","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:20:07.872536+00:00","id":"671b4e09-8d51-49e9-b29f-97a63b3ab666","mac_address":"02:00:00:14:74:1b","modification_date":"2023-10-27T09:20:07.872536+00:00","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","server_id":"098846b5-7816-4025-9b0d-fed4391018de","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1223,7 +1216,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:51 GMT + - Fri, 27 Oct 2023 09:20:08 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1233,7 +1226,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84d78543-c3c5-410d-a3db-5481ce70a4c0 + - 2008bd0b-85ee-4fc9-a9a5-f17318976054 status: 200 OK code: 200 duration: "" @@ -1242,12 +1235,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860/private_nics/c99d3bd0-86cc-4a85-9591-4bb630c9fd39 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de/private_nics/671b4e09-8d51-49e9-b29f-97a63b3ab666 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:18:51.027324+00:00","id":"c99d3bd0-86cc-4a85-9591-4bb630c9fd39","mac_address":"02:00:00:14:57:d1","modification_date":"2023-10-20T14:18:51.895193+00:00","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","server_id":"e6c098b1-27fb-4122-a199-67a4b10a2860","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:20:07.872536+00:00","id":"671b4e09-8d51-49e9-b29f-97a63b3ab666","mac_address":"02:00:00:14:74:1b","modification_date":"2023-10-27T09:20:09.015021+00:00","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","server_id":"098846b5-7816-4025-9b0d-fed4391018de","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1256,7 +1249,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:18:56 GMT + - Fri, 27 Oct 2023 09:20:13 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1266,7 +1259,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25cc7c4e-7c35-4820-a3f4-d051aa97b578 + - 09444758-c934-4bb3-840b-931ceb72b2eb status: 200 OK code: 200 duration: "" @@ -1275,12 +1268,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860/private_nics/c99d3bd0-86cc-4a85-9591-4bb630c9fd39 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de/private_nics/671b4e09-8d51-49e9-b29f-97a63b3ab666 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:18:51.027324+00:00","id":"c99d3bd0-86cc-4a85-9591-4bb630c9fd39","mac_address":"02:00:00:14:57:d1","modification_date":"2023-10-20T14:18:51.895193+00:00","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","server_id":"e6c098b1-27fb-4122-a199-67a4b10a2860","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:20:07.872536+00:00","id":"671b4e09-8d51-49e9-b29f-97a63b3ab666","mac_address":"02:00:00:14:74:1b","modification_date":"2023-10-27T09:20:09.015021+00:00","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","server_id":"098846b5-7816-4025-9b0d-fed4391018de","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1289,7 +1282,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:01 GMT + - Fri, 27 Oct 2023 09:20:18 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1299,7 +1292,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6883b882-3b8e-4d5f-92f1-24df8390f91c + - dccf2235-58d7-4ca4-9ee1-b261509af260 status: 200 OK code: 200 duration: "" @@ -1308,12 +1301,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860/private_nics/c99d3bd0-86cc-4a85-9591-4bb630c9fd39 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de/private_nics/671b4e09-8d51-49e9-b29f-97a63b3ab666 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:18:51.027324+00:00","id":"c99d3bd0-86cc-4a85-9591-4bb630c9fd39","mac_address":"02:00:00:14:57:d1","modification_date":"2023-10-20T14:18:51.895193+00:00","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","server_id":"e6c098b1-27fb-4122-a199-67a4b10a2860","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:20:07.872536+00:00","id":"671b4e09-8d51-49e9-b29f-97a63b3ab666","mac_address":"02:00:00:14:74:1b","modification_date":"2023-10-27T09:20:09.015021+00:00","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","server_id":"098846b5-7816-4025-9b0d-fed4391018de","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1322,7 +1315,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:06 GMT + - Fri, 27 Oct 2023 09:20:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1332,7 +1325,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 783a6b8d-b5ff-4faf-90b0-72111498c72e + - cbb82725-0d3b-4b28-9d66-87b4a9d82479 status: 200 OK code: 200 duration: "" @@ -1341,12 +1334,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860/private_nics/c99d3bd0-86cc-4a85-9591-4bb630c9fd39 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de/private_nics/671b4e09-8d51-49e9-b29f-97a63b3ab666 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:18:51.027324+00:00","id":"c99d3bd0-86cc-4a85-9591-4bb630c9fd39","mac_address":"02:00:00:14:57:d1","modification_date":"2023-10-20T14:18:51.895193+00:00","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","server_id":"e6c098b1-27fb-4122-a199-67a4b10a2860","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:20:07.872536+00:00","id":"671b4e09-8d51-49e9-b29f-97a63b3ab666","mac_address":"02:00:00:14:74:1b","modification_date":"2023-10-27T09:20:09.015021+00:00","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","server_id":"098846b5-7816-4025-9b0d-fed4391018de","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1355,7 +1348,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:12 GMT + - Fri, 27 Oct 2023 09:20:29 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1365,7 +1358,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8f4ee64-0e2f-4231-9478-25def0bd3846 + - ceabcdb0-4241-4fd9-b026-a960899399c9 status: 200 OK code: 200 duration: "" @@ -1374,12 +1367,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860/private_nics/c99d3bd0-86cc-4a85-9591-4bb630c9fd39 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de/private_nics/671b4e09-8d51-49e9-b29f-97a63b3ab666 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:18:51.027324+00:00","id":"c99d3bd0-86cc-4a85-9591-4bb630c9fd39","mac_address":"02:00:00:14:57:d1","modification_date":"2023-10-20T14:18:51.895193+00:00","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","server_id":"e6c098b1-27fb-4122-a199-67a4b10a2860","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:20:07.872536+00:00","id":"671b4e09-8d51-49e9-b29f-97a63b3ab666","mac_address":"02:00:00:14:74:1b","modification_date":"2023-10-27T09:20:09.015021+00:00","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","server_id":"098846b5-7816-4025-9b0d-fed4391018de","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1388,7 +1381,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:17 GMT + - Fri, 27 Oct 2023 09:20:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1398,7 +1391,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20be1c2f-5295-4da2-a46c-0db06af56abf + - 4c969cd7-4253-4240-b48e-133257cd4069 status: 200 OK code: 200 duration: "" @@ -1407,12 +1400,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860/private_nics/c99d3bd0-86cc-4a85-9591-4bb630c9fd39 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de/private_nics/671b4e09-8d51-49e9-b29f-97a63b3ab666 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:18:51.027324+00:00","id":"c99d3bd0-86cc-4a85-9591-4bb630c9fd39","mac_address":"02:00:00:14:57:d1","modification_date":"2023-10-20T14:18:51.895193+00:00","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","server_id":"e6c098b1-27fb-4122-a199-67a4b10a2860","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:20:07.872536+00:00","id":"671b4e09-8d51-49e9-b29f-97a63b3ab666","mac_address":"02:00:00:14:74:1b","modification_date":"2023-10-27T09:20:09.015021+00:00","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","server_id":"098846b5-7816-4025-9b0d-fed4391018de","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "376" @@ -1421,7 +1414,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:22 GMT + - Fri, 27 Oct 2023 09:20:39 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1431,7 +1424,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83594ad7-b71e-41c1-808d-e49cebd31b75 + - 13e5a36f-264b-4344-91f7-deb9d02772af status: 200 OK code: 200 duration: "" @@ -1440,12 +1433,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860/private_nics/c99d3bd0-86cc-4a85-9591-4bb630c9fd39 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de/private_nics/671b4e09-8d51-49e9-b29f-97a63b3ab666 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:18:51.027324+00:00","id":"c99d3bd0-86cc-4a85-9591-4bb630c9fd39","mac_address":"02:00:00:14:57:d1","modification_date":"2023-10-20T14:19:22.894671+00:00","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","server_id":"e6c098b1-27fb-4122-a199-67a4b10a2860","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:20:07.872536+00:00","id":"671b4e09-8d51-49e9-b29f-97a63b3ab666","mac_address":"02:00:00:14:74:1b","modification_date":"2023-10-27T09:20:39.805933+00:00","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","server_id":"098846b5-7816-4025-9b0d-fed4391018de","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "378" @@ -1454,7 +1447,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:27 GMT + - Fri, 27 Oct 2023 09:20:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1464,7 +1457,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 068fa53d-918e-4a45-9db4-85e2268146f7 + - 50c2947b-274f-4704-ab6d-f836fc52dd43 status: 200 OK code: 200 duration: "" @@ -1473,12 +1466,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860/private_nics/c99d3bd0-86cc-4a85-9591-4bb630c9fd39 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de/private_nics/671b4e09-8d51-49e9-b29f-97a63b3ab666 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:18:51.027324+00:00","id":"c99d3bd0-86cc-4a85-9591-4bb630c9fd39","mac_address":"02:00:00:14:57:d1","modification_date":"2023-10-20T14:19:22.894671+00:00","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","server_id":"e6c098b1-27fb-4122-a199-67a4b10a2860","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:20:07.872536+00:00","id":"671b4e09-8d51-49e9-b29f-97a63b3ab666","mac_address":"02:00:00:14:74:1b","modification_date":"2023-10-27T09:20:39.805933+00:00","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","server_id":"098846b5-7816-4025-9b0d-fed4391018de","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "378" @@ -1487,7 +1480,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:27 GMT + - Fri, 27 Oct 2023 09:20:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1497,7 +1490,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b22d7f46-612d-4ff7-8662-453a1074e9c9 + - c234c5d4-7bdf-43f9-9240-ba4752653297 status: 200 OK code: 200 duration: "" @@ -1506,29 +1499,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.472674+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"e6c098b1-27fb-4122-a199-67a4b10a2860","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:19:51.076352+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"098846b5-7816-4025-9b0d-fed4391018de","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:77","maintenances":[],"modification_date":"2023-10-20T14:18:45.667855+00:00","name":"Scaleway - Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.32.17","private_nics":[{"creation_date":"2023-10-20T14:18:51.027324+00:00","id":"c99d3bd0-86cc-4a85-9591-4bb630c9fd39","mac_address":"02:00:00:14:57:d1","modification_date":"2023-10-20T14:19:22.894671+00:00","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","server_id":"e6c098b1-27fb-4122-a199-67a4b10a2860","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.472674+00:00","export_uri":null,"id":"87f51bef-dd4c-4d60-a2ca-fb33696ef6b0","modification_date":"2023-10-20T14:18:28.472674+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"e6c098b1-27fb-4122-a199-67a4b10a2860","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1701","node_id":"16","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:be:51","maintenances":[],"modification_date":"2023-10-27T09:20:04.786446+00:00","name":"Scaleway + Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.224.31","private_nics":[{"creation_date":"2023-10-27T09:20:07.872536+00:00","id":"671b4e09-8d51-49e9-b29f-97a63b3ab666","mac_address":"02:00:00:14:74:1b","modification_date":"2023-10-27T09:20:39.805933+00:00","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","server_id":"098846b5-7816-4025-9b0d-fed4391018de","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:19:51.076352+00:00","export_uri":null,"id":"f8850b0a-6bf1-4423-b6b4-dedbcaf24282","modification_date":"2023-10-27T09:19:51.076352+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"098846b5-7816-4025-9b0d-fed4391018de","name":"Scaleway Instance"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3119" + - "3122" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:27 GMT + - Fri, 27 Oct 2023 09:20:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1538,7 +1531,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c37be79-6c9d-419c-a147-bd29d7f0b7aa + - abba8430-d907-4ee6-aa5e-ce8088e37af7 status: 200 OK code: 200 duration: "" @@ -1547,9 +1540,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de/user_data method: GET response: body: '{"user_data":[]}' @@ -1561,7 +1554,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:27 GMT + - Fri, 27 Oct 2023 09:20:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1571,7 +1564,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3319a6c-b814-4426-8824-6fd59ae1bf1c + - 8756830a-0e5e-43be-9acd-b6e67d900d85 status: 200 OK code: 200 duration: "" @@ -1580,12 +1573,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T14:18:51.027324+00:00","id":"c99d3bd0-86cc-4a85-9591-4bb630c9fd39","mac_address":"02:00:00:14:57:d1","modification_date":"2023-10-20T14:19:22.894671+00:00","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","server_id":"e6c098b1-27fb-4122-a199-67a4b10a2860","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T09:20:07.872536+00:00","id":"671b4e09-8d51-49e9-b29f-97a63b3ab666","mac_address":"02:00:00:14:74:1b","modification_date":"2023-10-27T09:20:39.805933+00:00","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","server_id":"098846b5-7816-4025-9b0d-fed4391018de","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "381" @@ -1594,9 +1587,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:27 GMT + - Fri, 27 Oct 2023 09:20:44 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -1607,7 +1600,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f5071ca-a69f-4369-bdfd-ae95afd0e564 + - 7b848728-eb24-472d-a158-606b416be031 X-Total-Count: - "1" status: 200 OK @@ -1618,12 +1611,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/d6afbf3f-19c9-4b30-af0c-776d2871e1bb + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/dfbbd5d4-417b-4201-81ac-839de38905cb method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:18:34.046806Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","ipam_config":null,"mac_address":"02:00:00:14:57:CE","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","status":"ready","updated_at":"2023-10-20T14:18:36.984154Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T09:19:57.154011Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"dfbbd5d4-417b-4201-81ac-839de38905cb","ipam_config":null,"mac_address":"02:00:00:14:74:1A","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","status":"ready","updated_at":"2023-10-27T09:20:03.884564Z","zone":"fr-par-1"}' headers: Content-Length: - "984" @@ -1632,7 +1625,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:27 GMT + - Fri, 27 Oct 2023 09:20:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1642,23 +1635,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 736d56f5-2751-4b02-90cd-3eeb22aa5cd8 + - 7a580049-83a6-4b77-babe-fdfdbc6b1958 status: 200 OK code: 200 duration: "" - request: - body: '{"gateway_network_id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","mac_address":"02:00:00:14:57:d1","ip_address":"10.0.0.3"}' + body: '{"gateway_network_id":"dfbbd5d4-417b-4201-81ac-839de38905cb","mac_address":"02:00:00:14:74:1b","ip_address":"10.0.0.3"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries method: POST response: - body: '{"created_at":"2023-10-20T14:18:51.810512Z","gateway_network_id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","hostname":"scaleway-instance","id":"84ccdd7d-b4bf-45b7-9310-eb334f41e22c","ip_address":"10.0.0.3","mac_address":"02:00:00:14:57:d1","type":"reservation","updated_at":"2023-10-20T14:19:28.947930Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:20:08.891703Z","gateway_network_id":"dfbbd5d4-417b-4201-81ac-839de38905cb","hostname":"scaleway-instance","id":"ae9c6642-9b34-4c5f-a978-e1172c114822","ip_address":"10.0.0.3","mac_address":"02:00:00:14:74:1b","type":"reservation","updated_at":"2023-10-27T09:20:44.956263Z","zone":"fr-par-1"}' headers: Content-Length: - "327" @@ -1667,7 +1660,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:28 GMT + - Fri, 27 Oct 2023 09:20:44 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1677,7 +1670,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c75e1890-bb06-4a0b-834b-83f4ef63312c + - 195994f6-6444-474c-b7f5-56f4064a5265 status: 200 OK code: 200 duration: "" @@ -1686,12 +1679,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/d6afbf3f-19c9-4b30-af0c-776d2871e1bb + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/dfbbd5d4-417b-4201-81ac-839de38905cb method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:18:34.046806Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","ipam_config":null,"mac_address":"02:00:00:14:57:CE","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","status":"ready","updated_at":"2023-10-20T14:18:36.984154Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T09:19:57.154011Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"dfbbd5d4-417b-4201-81ac-839de38905cb","ipam_config":null,"mac_address":"02:00:00:14:74:1A","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","status":"ready","updated_at":"2023-10-27T09:20:03.884564Z","zone":"fr-par-1"}' headers: Content-Length: - "984" @@ -1700,7 +1693,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:29 GMT + - Fri, 27 Oct 2023 09:20:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1710,7 +1703,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 874705a4-05b7-4136-961b-7153ee548aaa + - 450adbb4-fc16-4f99-a3ce-8ba3c839ab63 status: 200 OK code: 200 duration: "" @@ -1719,12 +1712,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/84ccdd7d-b4bf-45b7-9310-eb334f41e22c + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/ae9c6642-9b34-4c5f-a978-e1172c114822 method: GET response: - body: '{"created_at":"2023-10-20T14:18:51.810512Z","gateway_network_id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","hostname":"scaleway-instance","id":"84ccdd7d-b4bf-45b7-9310-eb334f41e22c","ip_address":"10.0.0.3","mac_address":"02:00:00:14:57:d1","type":"reservation","updated_at":"2023-10-20T14:19:28.947930Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:20:08.891703Z","gateway_network_id":"dfbbd5d4-417b-4201-81ac-839de38905cb","hostname":"scaleway-instance","id":"ae9c6642-9b34-4c5f-a978-e1172c114822","ip_address":"10.0.0.3","mac_address":"02:00:00:14:74:1b","type":"reservation","updated_at":"2023-10-27T09:20:44.956263Z","zone":"fr-par-1"}' headers: Content-Length: - "327" @@ -1733,7 +1726,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:29 GMT + - Fri, 27 Oct 2023 09:20:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1743,7 +1736,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90d1aab2-d281-49cf-a2d4-f18c4bdff599 + - b6409a9c-b751-4ebd-b5d0-c6b89cd850ae status: 200 OK code: 200 duration: "" @@ -1752,22 +1745,22 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/38056808-01b1-40cd-9c29-0ef6cd790859 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/3442e2a0-edcd-4bb6-b074-0e7edb22254c method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.035978Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:18:34.046806Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","ipam_config":null,"mac_address":"02:00:00:14:57:CE","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","status":"ready","updated_at":"2023-10-20T14:18:36.984154Z","zone":"fr-par-1"}],"id":"38056808-01b1-40cd-9c29-0ef6cd790859","ip":{"address":"51.15.245.191","created_at":"2023-10-20T14:18:26.936140Z","gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"52b38e88-8e0b-4580-8776-8b524fc7aca3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"191-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.936140Z","zone":"fr-par-1"},"is_legacy":true,"name":"The - Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:37.102467Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:19:50.463377Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T09:19:57.154011Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"dfbbd5d4-417b-4201-81ac-839de38905cb","ipam_config":null,"mac_address":"02:00:00:14:74:1A","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","status":"ready","updated_at":"2023-10-27T09:20:03.884564Z","zone":"fr-par-1"}],"id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","ip":{"address":"51.158.103.254","created_at":"2023-10-27T09:19:50.275799Z","gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"57d892b9-1f4d-4e63-be19-8f3646cc417b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"254-103-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:19:50.275799Z","zone":"fr-par-1"},"is_legacy":true,"name":"The + Public Gateway","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:20:04.051485Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "1964" + - "1966" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:29 GMT + - Fri, 27 Oct 2023 09:20:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1777,7 +1770,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - deabee3c-3b11-4ef2-8e5c-ac266e3119a1 + - f935c6f1-1a65-4945-889b-59aa857fca8a status: 200 OK code: 200 duration: "" @@ -1786,22 +1779,22 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/38056808-01b1-40cd-9c29-0ef6cd790859 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/3442e2a0-edcd-4bb6-b074-0e7edb22254c method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.035978Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:18:34.046806Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","ipam_config":null,"mac_address":"02:00:00:14:57:CE","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","status":"ready","updated_at":"2023-10-20T14:18:36.984154Z","zone":"fr-par-1"}],"id":"38056808-01b1-40cd-9c29-0ef6cd790859","ip":{"address":"51.15.245.191","created_at":"2023-10-20T14:18:26.936140Z","gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"52b38e88-8e0b-4580-8776-8b524fc7aca3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"191-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.936140Z","zone":"fr-par-1"},"is_legacy":true,"name":"The - Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:37.102467Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:19:50.463377Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T09:19:57.154011Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"dfbbd5d4-417b-4201-81ac-839de38905cb","ipam_config":null,"mac_address":"02:00:00:14:74:1A","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","status":"ready","updated_at":"2023-10-27T09:20:03.884564Z","zone":"fr-par-1"}],"id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","ip":{"address":"51.158.103.254","created_at":"2023-10-27T09:19:50.275799Z","gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"57d892b9-1f4d-4e63-be19-8f3646cc417b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"254-103-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:19:50.275799Z","zone":"fr-par-1"},"is_legacy":true,"name":"The + Public Gateway","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:20:04.051485Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "1964" + - "1966" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:29 GMT + - Fri, 27 Oct 2023 09:20:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1811,23 +1804,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03e5602e-63ab-4129-9f14-d215db15d464 + - 18524a0b-5671-4817-a097-c8b4c9cb98db status: 200 OK code: 200 duration: "" - request: - body: '{"gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","public_port":2023,"private_ip":"10.0.0.3","private_port":22,"protocol":"tcp"}' + body: '{"gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","public_port":2023,"private_ip":"10.0.0.3","private_port":22,"protocol":"tcp"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules method: POST response: - body: '{"created_at":"2023-10-20T14:19:29.282485Z","gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"81c6f301-0cb7-47a8-8f28-b37e78770b7f","private_ip":"10.0.0.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2023-10-20T14:19:29.282485Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:20:45.373605Z","gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"9f9b12cc-f21c-4706-8465-a3cfdd9de4f3","private_ip":"10.0.0.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2023-10-27T09:20:45.373605Z","zone":"fr-par-1"}' headers: Content-Length: - "287" @@ -1836,7 +1829,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:29 GMT + - Fri, 27 Oct 2023 09:20:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1846,7 +1839,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a0ea8a6-0867-487d-ba84-b8a1fca83ba2 + - a7b214e0-07fe-4a4a-ab63-6fab64ab106b status: 200 OK code: 200 duration: "" @@ -1855,22 +1848,22 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/38056808-01b1-40cd-9c29-0ef6cd790859 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/3442e2a0-edcd-4bb6-b074-0e7edb22254c method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.035978Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:18:34.046806Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","ipam_config":null,"mac_address":"02:00:00:14:57:CE","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","status":"ready","updated_at":"2023-10-20T14:18:36.984154Z","zone":"fr-par-1"}],"id":"38056808-01b1-40cd-9c29-0ef6cd790859","ip":{"address":"51.15.245.191","created_at":"2023-10-20T14:18:26.936140Z","gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"52b38e88-8e0b-4580-8776-8b524fc7aca3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"191-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.936140Z","zone":"fr-par-1"},"is_legacy":true,"name":"The - Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:37.102467Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:19:50.463377Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T09:19:57.154011Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"dfbbd5d4-417b-4201-81ac-839de38905cb","ipam_config":null,"mac_address":"02:00:00:14:74:1A","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","status":"ready","updated_at":"2023-10-27T09:20:03.884564Z","zone":"fr-par-1"}],"id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","ip":{"address":"51.158.103.254","created_at":"2023-10-27T09:19:50.275799Z","gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"57d892b9-1f4d-4e63-be19-8f3646cc417b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"254-103-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:19:50.275799Z","zone":"fr-par-1"},"is_legacy":true,"name":"The + Public Gateway","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:20:04.051485Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "1964" + - "1966" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:29 GMT + - Fri, 27 Oct 2023 09:20:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1880,7 +1873,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba8aa4bb-2c6d-41b6-a267-a9c7217db4ba + - 4f322f95-e089-4762-993e-579efe1ecea2 status: 200 OK code: 200 duration: "" @@ -1889,12 +1882,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules/81c6f301-0cb7-47a8-8f28-b37e78770b7f + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules/9f9b12cc-f21c-4706-8465-a3cfdd9de4f3 method: GET response: - body: '{"created_at":"2023-10-20T14:19:29.282485Z","gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"81c6f301-0cb7-47a8-8f28-b37e78770b7f","private_ip":"10.0.0.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2023-10-20T14:19:29.282485Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:20:45.373605Z","gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"9f9b12cc-f21c-4706-8465-a3cfdd9de4f3","private_ip":"10.0.0.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2023-10-27T09:20:45.373605Z","zone":"fr-par-1"}' headers: Content-Length: - "287" @@ -1903,7 +1896,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:29 GMT + - Fri, 27 Oct 2023 09:20:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1913,7 +1906,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 643f0a2a-ff00-4782-b8fd-7226b83afca0 + - fad9692b-2695-42cc-a2f9-b803559abc15 status: 200 OK code: 200 duration: "" @@ -1922,12 +1915,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/32426185-49c2-4047-a113-32594639fbf2 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/9905b816-982c-4533-95df-9c1fb6652616 method: GET response: - body: '{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"}' headers: Content-Length: - "574" @@ -1936,7 +1929,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:29 GMT + - Fri, 27 Oct 2023 09:20:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1946,7 +1939,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35aaf8a9-fc72-4798-9a7d-e66ad8d04490 + - 94612d32-c526-4507-8e42-038d5bc6bb28 status: 200 OK code: 200 duration: "" @@ -1955,12 +1948,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules/81c6f301-0cb7-47a8-8f28-b37e78770b7f + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules/9f9b12cc-f21c-4706-8465-a3cfdd9de4f3 method: GET response: - body: '{"created_at":"2023-10-20T14:19:29.282485Z","gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"81c6f301-0cb7-47a8-8f28-b37e78770b7f","private_ip":"10.0.0.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2023-10-20T14:19:29.282485Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:20:45.373605Z","gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"9f9b12cc-f21c-4706-8465-a3cfdd9de4f3","private_ip":"10.0.0.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2023-10-27T09:20:45.373605Z","zone":"fr-par-1"}' headers: Content-Length: - "287" @@ -1969,7 +1962,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:29 GMT + - Fri, 27 Oct 2023 09:20:45 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1979,7 +1972,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc9df22b-7163-417a-97a6-221c2fed4f4a + - 5c9929a1-7f4d-4289-9720-8eefe0656187 status: 200 OK code: 200 duration: "" @@ -1988,21 +1981,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/52b38e88-8e0b-4580-8776-8b524fc7aca3 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/9905b816-982c-4533-95df-9c1fb6652616 method: GET response: - body: '{"address":"51.15.245.191","created_at":"2023-10-20T14:18:26.936140Z","gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"52b38e88-8e0b-4580-8776-8b524fc7aca3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"191-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.936140Z","zone":"fr-par-1"}' + body: '{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"}' headers: Content-Length: - - "401" + - "574" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:30 GMT + - Fri, 27 Oct 2023 09:20:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2012,7 +2005,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35e80b03-84ea-470c-be3a-6fd498b935b5 + - 1f0990b6-e88f-4aea-b689-9b0169242a45 status: 200 OK code: 200 duration: "" @@ -2021,21 +2014,21 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/32426185-49c2-4047-a113-32594639fbf2 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/57d892b9-1f4d-4e63-be19-8f3646cc417b method: GET response: - body: '{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"}' + body: '{"address":"51.158.103.254","created_at":"2023-10-27T09:19:50.275799Z","gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"57d892b9-1f4d-4e63-be19-8f3646cc417b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"254-103-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:19:50.275799Z","zone":"fr-par-1"}' headers: Content-Length: - - "574" + - "403" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:30 GMT + - Fri, 27 Oct 2023 09:20:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2045,7 +2038,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e533cfa0-1a90-4d3b-9180-67e67828ab6d + - 61e9a089-d980-415b-8864-d8c1f249521f status: 200 OK code: 200 duration: "" @@ -2054,13 +2047,13 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/951d085f-c13a-4075-b56c-7b566cc7d0e8 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b8a24e1f-a121-4288-b171-6ba30a5f9ced method: GET response: - body: '{"created_at":"2023-10-20T14:18:26.291733Z","dhcp_enabled":true,"id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","name":"My - Private Network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2023-10-20T14:18:26.291733Z","id":"52cf5211-72fc-4c11-920a-ace8324198f1","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:32.587449Z"},{"created_at":"2023-10-20T14:18:26.291733Z","id":"e81a0a9b-9573-4a40-a27a-712a7f43ec84","subnet":"fd5f:519c:6d46:40e3::/64","updated_at":"2023-10-20T14:18:32.590739Z"}],"tags":[],"updated_at":"2023-10-20T14:18:36.675179Z","vpc_id":"ef0c019a-0168-4482-83c5-deccc3209b2f"}' + body: '{"created_at":"2023-10-27T09:19:49.667169Z","dhcp_enabled":true,"id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","name":"My + Private Network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2023-10-27T09:19:49.667169Z","id":"de489d07-0287-4658-860f-6125d7ecb7e0","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:56.143052Z"},{"created_at":"2023-10-27T09:19:49.667169Z","id":"0cb1d3db-cf3e-4571-914e-8d8fdd6951bd","subnet":"fd46:78ab:30b8:f7b5::/64","updated_at":"2023-10-27T09:19:56.148154Z"}],"tags":[],"updated_at":"2023-10-27T09:20:01.540972Z","vpc_id":"94132e03-8daf-4987-a793-e5382d24aa44"}' headers: Content-Length: - "716" @@ -2069,7 +2062,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:30 GMT + - Fri, 27 Oct 2023 09:20:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2079,7 +2072,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 221f407e-0339-49e1-9288-8bddf6a46938 + - 04927c82-fc39-46f9-8b22-66bc909dbf78 status: 200 OK code: 200 duration: "" @@ -2088,22 +2081,22 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/38056808-01b1-40cd-9c29-0ef6cd790859 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/3442e2a0-edcd-4bb6-b074-0e7edb22254c method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.035978Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:18:34.046806Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","ipam_config":null,"mac_address":"02:00:00:14:57:CE","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","status":"ready","updated_at":"2023-10-20T14:18:36.984154Z","zone":"fr-par-1"}],"id":"38056808-01b1-40cd-9c29-0ef6cd790859","ip":{"address":"51.15.245.191","created_at":"2023-10-20T14:18:26.936140Z","gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"52b38e88-8e0b-4580-8776-8b524fc7aca3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"191-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.936140Z","zone":"fr-par-1"},"is_legacy":true,"name":"The - Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:37.102467Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:19:50.463377Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T09:19:57.154011Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"dfbbd5d4-417b-4201-81ac-839de38905cb","ipam_config":null,"mac_address":"02:00:00:14:74:1A","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","status":"ready","updated_at":"2023-10-27T09:20:03.884564Z","zone":"fr-par-1"}],"id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","ip":{"address":"51.158.103.254","created_at":"2023-10-27T09:19:50.275799Z","gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"57d892b9-1f4d-4e63-be19-8f3646cc417b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"254-103-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:19:50.275799Z","zone":"fr-par-1"},"is_legacy":true,"name":"The + Public Gateway","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:20:04.051485Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "1964" + - "1966" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:30 GMT + - Fri, 27 Oct 2023 09:20:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2113,7 +2106,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0fb4fbc0-dd5e-4d87-8bbc-20223b756f9d + - dbb7f47e-9e56-4020-bff4-dbc1bbd5c416 status: 200 OK code: 200 duration: "" @@ -2122,12 +2115,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/d6afbf3f-19c9-4b30-af0c-776d2871e1bb + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/dfbbd5d4-417b-4201-81ac-839de38905cb method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:18:34.046806Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","ipam_config":null,"mac_address":"02:00:00:14:57:CE","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","status":"ready","updated_at":"2023-10-20T14:18:36.984154Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T09:19:57.154011Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"dfbbd5d4-417b-4201-81ac-839de38905cb","ipam_config":null,"mac_address":"02:00:00:14:74:1A","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","status":"ready","updated_at":"2023-10-27T09:20:03.884564Z","zone":"fr-par-1"}' headers: Content-Length: - "984" @@ -2136,7 +2129,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:30 GMT + - Fri, 27 Oct 2023 09:20:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2146,7 +2139,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a69c69a3-5e21-4995-ba05-5309d544639e + - f6a1fcb9-f7a6-44f0-ae1c-9badec190169 status: 200 OK code: 200 duration: "" @@ -2155,22 +2148,22 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/38056808-01b1-40cd-9c29-0ef6cd790859 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/3442e2a0-edcd-4bb6-b074-0e7edb22254c method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.035978Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:18:34.046806Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","ipam_config":null,"mac_address":"02:00:00:14:57:CE","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","status":"ready","updated_at":"2023-10-20T14:18:36.984154Z","zone":"fr-par-1"}],"id":"38056808-01b1-40cd-9c29-0ef6cd790859","ip":{"address":"51.15.245.191","created_at":"2023-10-20T14:18:26.936140Z","gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"52b38e88-8e0b-4580-8776-8b524fc7aca3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"191-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.936140Z","zone":"fr-par-1"},"is_legacy":true,"name":"The - Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:37.102467Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:19:50.463377Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T09:19:57.154011Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"dfbbd5d4-417b-4201-81ac-839de38905cb","ipam_config":null,"mac_address":"02:00:00:14:74:1A","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","status":"ready","updated_at":"2023-10-27T09:20:03.884564Z","zone":"fr-par-1"}],"id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","ip":{"address":"51.158.103.254","created_at":"2023-10-27T09:19:50.275799Z","gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"57d892b9-1f4d-4e63-be19-8f3646cc417b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"254-103-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:19:50.275799Z","zone":"fr-par-1"},"is_legacy":true,"name":"The + Public Gateway","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:20:04.051485Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "1964" + - "1966" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:30 GMT + - Fri, 27 Oct 2023 09:20:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2180,7 +2173,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0a09825-f8c2-4229-b398-9a49c2215a51 + - e8ad9056-6d4d-477b-a24d-bba0410bb638 status: 200 OK code: 200 duration: "" @@ -2189,29 +2182,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de method: GET response: body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.472674+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"e6c098b1-27fb-4122-a199-67a4b10a2860","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:19:51.076352+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"098846b5-7816-4025-9b0d-fed4391018de","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:77","maintenances":[],"modification_date":"2023-10-20T14:18:45.667855+00:00","name":"Scaleway - Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.32.17","private_nics":[{"creation_date":"2023-10-20T14:18:51.027324+00:00","id":"c99d3bd0-86cc-4a85-9591-4bb630c9fd39","mac_address":"02:00:00:14:57:d1","modification_date":"2023-10-20T14:19:22.894671+00:00","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","server_id":"e6c098b1-27fb-4122-a199-67a4b10a2860","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.472674+00:00","export_uri":null,"id":"87f51bef-dd4c-4d60-a2ca-fb33696ef6b0","modification_date":"2023-10-20T14:18:28.472674+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"e6c098b1-27fb-4122-a199-67a4b10a2860","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1701","node_id":"16","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:be:51","maintenances":[],"modification_date":"2023-10-27T09:20:04.786446+00:00","name":"Scaleway + Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.224.31","private_nics":[{"creation_date":"2023-10-27T09:20:07.872536+00:00","id":"671b4e09-8d51-49e9-b29f-97a63b3ab666","mac_address":"02:00:00:14:74:1b","modification_date":"2023-10-27T09:20:39.805933+00:00","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","server_id":"098846b5-7816-4025-9b0d-fed4391018de","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:19:51.076352+00:00","export_uri":null,"id":"f8850b0a-6bf1-4423-b6b4-dedbcaf24282","modification_date":"2023-10-27T09:19:51.076352+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"098846b5-7816-4025-9b0d-fed4391018de","name":"Scaleway Instance"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3119" + - "3122" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:30 GMT + - Fri, 27 Oct 2023 09:20:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2221,7 +2214,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac9e2b14-2c66-4c99-8fb7-b12a5b8e95ed + - 81a029fd-cf1f-4c02-9a1d-172b2eaf572a status: 200 OK code: 200 duration: "" @@ -2230,12 +2223,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/d6afbf3f-19c9-4b30-af0c-776d2871e1bb + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/dfbbd5d4-417b-4201-81ac-839de38905cb method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:18:34.046806Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","ipam_config":null,"mac_address":"02:00:00:14:57:CE","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","status":"ready","updated_at":"2023-10-20T14:18:36.984154Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T09:19:57.154011Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"dfbbd5d4-417b-4201-81ac-839de38905cb","ipam_config":null,"mac_address":"02:00:00:14:74:1A","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","status":"ready","updated_at":"2023-10-27T09:20:03.884564Z","zone":"fr-par-1"}' headers: Content-Length: - "984" @@ -2244,7 +2237,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:30 GMT + - Fri, 27 Oct 2023 09:20:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2254,7 +2247,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b73c1ba4-160b-4876-af0f-26a2da674cf6 + - 7eb52930-d368-486e-9baa-ad8c27d3c422 status: 200 OK code: 200 duration: "" @@ -2263,9 +2256,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de/user_data method: GET response: body: '{"user_data":[]}' @@ -2277,7 +2270,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:30 GMT + - Fri, 27 Oct 2023 09:20:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2287,7 +2280,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 398d3e32-9f7e-4668-8af5-1c37d1d43d38 + - 1e72d364-de1e-4215-bb30-5a8cf892c891 status: 200 OK code: 200 duration: "" @@ -2296,12 +2289,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T14:18:51.027324+00:00","id":"c99d3bd0-86cc-4a85-9591-4bb630c9fd39","mac_address":"02:00:00:14:57:d1","modification_date":"2023-10-20T14:19:22.894671+00:00","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","server_id":"e6c098b1-27fb-4122-a199-67a4b10a2860","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T09:20:07.872536+00:00","id":"671b4e09-8d51-49e9-b29f-97a63b3ab666","mac_address":"02:00:00:14:74:1b","modification_date":"2023-10-27T09:20:39.805933+00:00","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","server_id":"098846b5-7816-4025-9b0d-fed4391018de","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "381" @@ -2310,9 +2303,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:30 GMT + - Fri, 27 Oct 2023 09:20:46 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -2323,7 +2316,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9471c7f-40a2-4d15-b609-480652be78e9 + - c97ea461-098a-4325-88dd-668154e65b7a X-Total-Count: - "1" status: 200 OK @@ -2334,12 +2327,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/84ccdd7d-b4bf-45b7-9310-eb334f41e22c + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/ae9c6642-9b34-4c5f-a978-e1172c114822 method: GET response: - body: '{"created_at":"2023-10-20T14:18:51.810512Z","gateway_network_id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","hostname":"scaleway-instance","id":"84ccdd7d-b4bf-45b7-9310-eb334f41e22c","ip_address":"10.0.0.3","mac_address":"02:00:00:14:57:d1","type":"reservation","updated_at":"2023-10-20T14:19:28.947930Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:20:08.891703Z","gateway_network_id":"dfbbd5d4-417b-4201-81ac-839de38905cb","hostname":"scaleway-instance","id":"ae9c6642-9b34-4c5f-a978-e1172c114822","ip_address":"10.0.0.3","mac_address":"02:00:00:14:74:1b","type":"reservation","updated_at":"2023-10-27T09:20:44.956263Z","zone":"fr-par-1"}' headers: Content-Length: - "327" @@ -2348,7 +2341,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:30 GMT + - Fri, 27 Oct 2023 09:20:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2358,7 +2351,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf280884-987d-411b-b326-ec6931101b37 + - 8c6ff371-1aa0-473f-aef5-35b65f733f75 status: 200 OK code: 200 duration: "" @@ -2367,12 +2360,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules/81c6f301-0cb7-47a8-8f28-b37e78770b7f + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules/9f9b12cc-f21c-4706-8465-a3cfdd9de4f3 method: GET response: - body: '{"created_at":"2023-10-20T14:19:29.282485Z","gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"81c6f301-0cb7-47a8-8f28-b37e78770b7f","private_ip":"10.0.0.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2023-10-20T14:19:29.282485Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:20:45.373605Z","gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"9f9b12cc-f21c-4706-8465-a3cfdd9de4f3","private_ip":"10.0.0.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2023-10-27T09:20:45.373605Z","zone":"fr-par-1"}' headers: Content-Length: - "287" @@ -2381,7 +2374,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:30 GMT + - Fri, 27 Oct 2023 09:20:46 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2391,7 +2384,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f666675-c6cd-4317-995b-15e9cf81465f + - 7f0036b4-0ecb-457c-a036-7dcf37206919 status: 200 OK code: 200 duration: "" @@ -2400,12 +2393,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules/81c6f301-0cb7-47a8-8f28-b37e78770b7f + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules/9f9b12cc-f21c-4706-8465-a3cfdd9de4f3 method: GET response: - body: '{"created_at":"2023-10-20T14:19:29.282485Z","gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"81c6f301-0cb7-47a8-8f28-b37e78770b7f","private_ip":"10.0.0.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2023-10-20T14:19:29.282485Z","zone":"fr-par-1"}' + body: '{"created_at":"2023-10-27T09:20:45.373605Z","gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"9f9b12cc-f21c-4706-8465-a3cfdd9de4f3","private_ip":"10.0.0.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2023-10-27T09:20:45.373605Z","zone":"fr-par-1"}' headers: Content-Length: - "287" @@ -2414,7 +2407,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:31 GMT + - Fri, 27 Oct 2023 09:20:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2424,7 +2417,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1af3528c-06fe-4889-bed7-9c9d0cbd0fc6 + - 6babbc0a-1aa1-4c65-9137-2428e873540e status: 200 OK code: 200 duration: "" @@ -2433,22 +2426,22 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/38056808-01b1-40cd-9c29-0ef6cd790859 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/3442e2a0-edcd-4bb6-b074-0e7edb22254c method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.035978Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:18:34.046806Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","ipam_config":null,"mac_address":"02:00:00:14:57:CE","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","status":"ready","updated_at":"2023-10-20T14:18:36.984154Z","zone":"fr-par-1"}],"id":"38056808-01b1-40cd-9c29-0ef6cd790859","ip":{"address":"51.15.245.191","created_at":"2023-10-20T14:18:26.936140Z","gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"52b38e88-8e0b-4580-8776-8b524fc7aca3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"191-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.936140Z","zone":"fr-par-1"},"is_legacy":true,"name":"The - Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:37.102467Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:19:50.463377Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T09:19:57.154011Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"dfbbd5d4-417b-4201-81ac-839de38905cb","ipam_config":null,"mac_address":"02:00:00:14:74:1A","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","status":"ready","updated_at":"2023-10-27T09:20:03.884564Z","zone":"fr-par-1"}],"id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","ip":{"address":"51.158.103.254","created_at":"2023-10-27T09:19:50.275799Z","gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"57d892b9-1f4d-4e63-be19-8f3646cc417b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"254-103-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:19:50.275799Z","zone":"fr-par-1"},"is_legacy":true,"name":"The + Public Gateway","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:20:04.051485Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "1964" + - "1966" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:31 GMT + - Fri, 27 Oct 2023 09:20:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2458,7 +2451,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5cee28d-183a-43c9-967c-cd371f3fbf5f + - fb821775-f27f-49ba-8cf6-f8d2d7a3b6c4 status: 200 OK code: 200 duration: "" @@ -2467,9 +2460,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules/81c6f301-0cb7-47a8-8f28-b37e78770b7f + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/pat-rules/9f9b12cc-f21c-4706-8465-a3cfdd9de4f3 method: DELETE response: body: "" @@ -2479,7 +2472,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:31 GMT + - Fri, 27 Oct 2023 09:20:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2489,7 +2482,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ffbbb22-c174-4616-bdf2-cf6feeec3eeb + - aaaee53c-28ec-4cc7-9a40-d9fb41faf55e status: 204 No Content code: 204 duration: "" @@ -2498,22 +2491,22 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/38056808-01b1-40cd-9c29-0ef6cd790859 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/3442e2a0-edcd-4bb6-b074-0e7edb22254c method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.035978Z","gateway_networks":[{"address":null,"created_at":"2023-10-20T14:18:34.046806Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","ipam_config":null,"mac_address":"02:00:00:14:57:CE","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","status":"ready","updated_at":"2023-10-20T14:18:36.984154Z","zone":"fr-par-1"}],"id":"38056808-01b1-40cd-9c29-0ef6cd790859","ip":{"address":"51.15.245.191","created_at":"2023-10-20T14:18:26.936140Z","gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"52b38e88-8e0b-4580-8776-8b524fc7aca3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"191-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.936140Z","zone":"fr-par-1"},"is_legacy":true,"name":"The - Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:37.102467Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:19:50.463377Z","gateway_networks":[{"address":null,"created_at":"2023-10-27T09:19:57.154011Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"dfbbd5d4-417b-4201-81ac-839de38905cb","ipam_config":null,"mac_address":"02:00:00:14:74:1A","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","status":"ready","updated_at":"2023-10-27T09:20:03.884564Z","zone":"fr-par-1"}],"id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","ip":{"address":"51.158.103.254","created_at":"2023-10-27T09:19:50.275799Z","gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"57d892b9-1f4d-4e63-be19-8f3646cc417b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"254-103-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:19:50.275799Z","zone":"fr-par-1"},"is_legacy":true,"name":"The + Public Gateway","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:20:04.051485Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "1964" + - "1966" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:31 GMT + - Fri, 27 Oct 2023 09:20:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2523,7 +2516,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73512560-7c69-4454-b2c9-398e05244b19 + - 9ca0a576-083f-44fd-8a41-61e680ea2172 status: 200 OK code: 200 duration: "" @@ -2532,12 +2525,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/d6afbf3f-19c9-4b30-af0c-776d2871e1bb + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/dfbbd5d4-417b-4201-81ac-839de38905cb method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:18:34.046806Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","ipam_config":null,"mac_address":"02:00:00:14:57:CE","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","status":"ready","updated_at":"2023-10-20T14:18:36.984154Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T09:19:57.154011Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"dfbbd5d4-417b-4201-81ac-839de38905cb","ipam_config":null,"mac_address":"02:00:00:14:74:1A","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","status":"ready","updated_at":"2023-10-27T09:20:03.884564Z","zone":"fr-par-1"}' headers: Content-Length: - "984" @@ -2546,7 +2539,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:31 GMT + - Fri, 27 Oct 2023 09:20:47 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2556,7 +2549,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ccd91b6-9cb4-44f0-8960-5fd294c508f5 + - 49f1cf7f-78ac-4e92-b9cf-abbed0681146 status: 200 OK code: 200 duration: "" @@ -2565,9 +2558,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/84ccdd7d-b4bf-45b7-9310-eb334f41e22c + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcp-entries/ae9c6642-9b34-4c5f-a978-e1172c114822 method: DELETE response: body: "" @@ -2577,7 +2570,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:31 GMT + - Fri, 27 Oct 2023 09:20:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2587,7 +2580,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00afece5-4a9a-4f28-ba62-d36bb2f890d3 + - 43bcb52b-3fe9-4842-b5d9-5708e7d58800 status: 204 No Content code: 204 duration: "" @@ -2596,12 +2589,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/d6afbf3f-19c9-4b30-af0c-776d2871e1bb + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/dfbbd5d4-417b-4201-81ac-839de38905cb method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:18:34.046806Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","ipam_config":null,"mac_address":"02:00:00:14:57:CE","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","status":"ready","updated_at":"2023-10-20T14:18:36.984154Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T09:19:57.154011Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"dfbbd5d4-417b-4201-81ac-839de38905cb","ipam_config":null,"mac_address":"02:00:00:14:74:1A","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","status":"ready","updated_at":"2023-10-27T09:20:03.884564Z","zone":"fr-par-1"}' headers: Content-Length: - "984" @@ -2610,7 +2603,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:31 GMT + - Fri, 27 Oct 2023 09:20:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2620,7 +2613,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ed1a271-8f9a-4efe-9836-a664eba2ce7f + - 3f278dfe-7f73-42bc-aa52-e591f440743b status: 200 OK code: 200 duration: "" @@ -2629,12 +2622,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/d6afbf3f-19c9-4b30-af0c-776d2871e1bb + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/dfbbd5d4-417b-4201-81ac-839de38905cb method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:18:34.046806Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","ipam_config":null,"mac_address":"02:00:00:14:57:CE","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","status":"ready","updated_at":"2023-10-20T14:18:36.984154Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T09:19:57.154011Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"dfbbd5d4-417b-4201-81ac-839de38905cb","ipam_config":null,"mac_address":"02:00:00:14:74:1A","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","status":"ready","updated_at":"2023-10-27T09:20:03.884564Z","zone":"fr-par-1"}' headers: Content-Length: - "984" @@ -2643,7 +2636,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:31 GMT + - Fri, 27 Oct 2023 09:20:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2653,7 +2646,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06a0e1a1-08ae-436a-9d96-2cc0d79a9ece + - df833086-3e03-4b4e-a1ab-b83c7958f59c status: 200 OK code: 200 duration: "" @@ -2662,19 +2655,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/d6afbf3f-19c9-4b30-af0c-776d2871e1bb?cleanup_dhcp=true - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de + method: GET response: - body: "" + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON + scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:19:51.076352+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"098846b5-7816-4025-9b0d-fed4391018de","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1701","node_id":"16","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:be:51","maintenances":[],"modification_date":"2023-10-27T09:20:04.786446+00:00","name":"Scaleway + Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.224.31","private_nics":[{"creation_date":"2023-10-27T09:20:07.872536+00:00","id":"671b4e09-8d51-49e9-b29f-97a63b3ab666","mac_address":"02:00:00:14:74:1b","modification_date":"2023-10-27T09:20:39.805933+00:00","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","server_id":"098846b5-7816-4025-9b0d-fed4391018de","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:19:51.076352+00:00","export_uri":null,"id":"f8850b0a-6bf1-4423-b6b4-dedbcaf24282","modification_date":"2023-10-27T09:19:51.076352+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"098846b5-7816-4025-9b0d-fed4391018de","name":"Scaleway + Instance"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "3122" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:31 GMT + - Fri, 27 Oct 2023 09:20:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2684,38 +2687,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 523aeb60-cea5-438b-8ffb-116a674146df - status: 204 No Content - code: 204 + - d781fec0-71ff-425a-9bf8-67401c4480c7 + status: 200 OK + code: 200 duration: "" - request: body: "" form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860 - method: GET + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/dfbbd5d4-417b-4201-81ac-839de38905cb?cleanup_dhcp=true + method: DELETE response: - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON - scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.472674+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"e6c098b1-27fb-4122-a199-67a4b10a2860","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian - Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:77","maintenances":[],"modification_date":"2023-10-20T14:18:45.667855+00:00","name":"Scaleway - Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.32.17","private_nics":[{"creation_date":"2023-10-20T14:18:51.027324+00:00","id":"c99d3bd0-86cc-4a85-9591-4bb630c9fd39","mac_address":"02:00:00:14:57:d1","modification_date":"2023-10-20T14:19:22.894671+00:00","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","server_id":"e6c098b1-27fb-4122-a199-67a4b10a2860","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"running","state_detail":"booted","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.472674+00:00","export_uri":null,"id":"87f51bef-dd4c-4d60-a2ca-fb33696ef6b0","modification_date":"2023-10-20T14:18:28.472674+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"e6c098b1-27fb-4122-a199-67a4b10a2860","name":"Scaleway - Instance"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "3119" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:31 GMT + - Fri, 27 Oct 2023 09:20:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2725,21 +2718,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 325506e7-ee6d-4831-9748-7e51410e6fb9 - status: 200 OK - code: 200 + - dc0cd9f2-e482-4b05-bba2-cca18be4faea + status: 204 No Content + code: 204 duration: "" - request: body: "" form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/d6afbf3f-19c9-4b30-af0c-776d2871e1bb + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/dfbbd5d4-417b-4201-81ac-839de38905cb method: GET response: - body: '{"address":null,"created_at":"2023-10-20T14:18:34.046806Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-20T14:18:26.286291Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"32426185-49c2-4047-a113-32594639fbf2","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-20T14:18:26.286291Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","ipam_config":null,"mac_address":"02:00:00:14:57:CE","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","status":"detaching","updated_at":"2023-10-20T14:19:31.512047Z","zone":"fr-par-1"}' + body: '{"address":null,"created_at":"2023-10-27T09:19:57.154011Z","dhcp":{"address":"10.0.0.1","created_at":"2023-10-27T09:19:49.662547Z","dns_local_name":"priv","dns_search":[],"dns_servers_override":[],"enable_dynamic":true,"id":"9905b816-982c-4533-95df-9c1fb6652616","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","pool_high":"10.0.0.254","pool_low":"10.0.0.2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","push_default_route":true,"push_dns_server":true,"rebind_timer":"3060s","renew_timer":"3000s","subnet":"10.0.0.0/24","updated_at":"2023-10-27T09:19:49.662547Z","valid_lifetime":"3600s","zone":"fr-par-1"},"enable_dhcp":true,"enable_masquerade":true,"gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"dfbbd5d4-417b-4201-81ac-839de38905cb","ipam_config":null,"mac_address":"02:00:00:14:74:1A","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","status":"detaching","updated_at":"2023-10-27T09:20:48.777464Z","zone":"fr-par-1"}' headers: Content-Length: - "988" @@ -2748,7 +2741,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:31 GMT + - Fri, 27 Oct 2023 09:20:48 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2758,7 +2751,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d7de7e1-d0a6-4f6d-bace-f7bcd5594691 + - d1ef9a3c-74df-40c7-a8f5-fe784e58a3c1 status: 200 OK code: 200 duration: "" @@ -2769,12 +2762,12 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de/action method: POST response: - body: '{"task":{"description":"server_poweroff","href_from":"/servers/e6c098b1-27fb-4122-a199-67a4b10a2860/action","href_result":"/servers/e6c098b1-27fb-4122-a199-67a4b10a2860","id":"437fd9b6-88bb-4061-88d8-3507b1c901cc","started_at":"2023-10-20T14:19:32.082584+00:00","status":"pending","terminated_at":null}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/098846b5-7816-4025-9b0d-fed4391018de/action","href_result":"/servers/098846b5-7816-4025-9b0d-fed4391018de","id":"6973802a-7976-40a0-baa4-c91d2019e485","started_at":"2023-10-27T09:20:49.425474+00:00","status":"pending","terminated_at":null}}' headers: Content-Length: - "317" @@ -2783,9 +2776,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:32 GMT + - Fri, 27 Oct 2023 09:20:49 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/437fd9b6-88bb-4061-88d8-3507b1c901cc + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6973802a-7976-40a0-baa4-c91d2019e485 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2795,7 +2788,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d2165f8-8540-481b-af4a-78c2f07b669d + - 12491dc7-c7a1-4929-860f-46a6be815951 status: 202 Accepted code: 202 duration: "" @@ -2804,29 +2797,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.472674+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"e6c098b1-27fb-4122-a199-67a4b10a2860","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:19:51.076352+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"098846b5-7816-4025-9b0d-fed4391018de","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:77","maintenances":[],"modification_date":"2023-10-20T14:19:31.589128+00:00","name":"Scaleway - Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.32.17","private_nics":[{"creation_date":"2023-10-20T14:18:51.027324+00:00","id":"c99d3bd0-86cc-4a85-9591-4bb630c9fd39","mac_address":"02:00:00:14:57:d1","modification_date":"2023-10-20T14:19:22.894671+00:00","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","server_id":"e6c098b1-27fb-4122-a199-67a4b10a2860","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.472674+00:00","export_uri":null,"id":"87f51bef-dd4c-4d60-a2ca-fb33696ef6b0","modification_date":"2023-10-20T14:18:28.472674+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"e6c098b1-27fb-4122-a199-67a4b10a2860","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1701","node_id":"16","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:be:51","maintenances":[],"modification_date":"2023-10-27T09:20:48.795381+00:00","name":"Scaleway + Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.224.31","private_nics":[{"creation_date":"2023-10-27T09:20:07.872536+00:00","id":"671b4e09-8d51-49e9-b29f-97a63b3ab666","mac_address":"02:00:00:14:74:1b","modification_date":"2023-10-27T09:20:39.805933+00:00","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","server_id":"098846b5-7816-4025-9b0d-fed4391018de","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:19:51.076352+00:00","export_uri":null,"id":"f8850b0a-6bf1-4423-b6b4-dedbcaf24282","modification_date":"2023-10-27T09:19:51.076352+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"098846b5-7816-4025-9b0d-fed4391018de","name":"Scaleway Instance"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3087" + - "3090" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:32 GMT + - Fri, 27 Oct 2023 09:20:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2836,7 +2829,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f19db91-2f13-47de-a1d8-d4235c7398e8 + - 4b686493-8b57-473e-9987-597cbcbc18ca status: 200 OK code: 200 duration: "" @@ -2845,12 +2838,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/d6afbf3f-19c9-4b30-af0c-776d2871e1bb + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateway-networks/dfbbd5d4-417b-4201-81ac-839de38905cb method: GET response: - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"d6afbf3f-19c9-4b30-af0c-776d2871e1bb","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"dfbbd5d4-417b-4201-81ac-839de38905cb","type":"not_found"}' headers: Content-Length: - "136" @@ -2859,7 +2852,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:36 GMT + - Fri, 27 Oct 2023 09:20:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2869,7 +2862,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33f5ca7e-64eb-4922-9d66-83fc605a27ca + - ea4a5800-fad2-45df-9c8b-443dfacef843 status: 404 Not Found code: 404 duration: "" @@ -2878,22 +2871,22 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/38056808-01b1-40cd-9c29-0ef6cd790859 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/3442e2a0-edcd-4bb6-b074-0e7edb22254c method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.035978Z","gateway_networks":[],"id":"38056808-01b1-40cd-9c29-0ef6cd790859","ip":{"address":"51.15.245.191","created_at":"2023-10-20T14:18:26.936140Z","gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"52b38e88-8e0b-4580-8776-8b524fc7aca3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"191-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.936140Z","zone":"fr-par-1"},"is_legacy":true,"name":"The - Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:37.102467Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:19:50.463377Z","gateway_networks":[],"id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","ip":{"address":"51.158.103.254","created_at":"2023-10-27T09:19:50.275799Z","gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"57d892b9-1f4d-4e63-be19-8f3646cc417b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"254-103-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:19:50.275799Z","zone":"fr-par-1"},"is_legacy":true,"name":"The + Public Gateway","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:20:04.051485Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "980" + - "982" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:36 GMT + - Fri, 27 Oct 2023 09:20:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2903,7 +2896,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5873e75-43e9-4147-b39d-88db164fee68 + - a5a0f8f8-f52e-4b35-8e08-cd496506a4e9 status: 200 OK code: 200 duration: "" @@ -2912,12 +2905,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/32426185-49c2-4047-a113-32594639fbf2 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/dhcps/9905b816-982c-4533-95df-9c1fb6652616 method: DELETE response: - body: '{"message":"resource is not found","resource":"dhcp","resource_id":"32426185-49c2-4047-a113-32594639fbf2","type":"not_found"}' + body: '{"message":"resource is not found","resource":"dhcp","resource_id":"9905b816-982c-4533-95df-9c1fb6652616","type":"not_found"}' headers: Content-Length: - "125" @@ -2926,7 +2919,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:36 GMT + - Fri, 27 Oct 2023 09:20:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2936,7 +2929,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e5d029f-6b63-4142-8c53-37932b364265 + - bf9cdb93-3b57-49d0-b0f5-c1c2ddea5eae status: 404 Not Found code: 404 duration: "" @@ -2945,22 +2938,22 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/38056808-01b1-40cd-9c29-0ef6cd790859 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/3442e2a0-edcd-4bb6-b074-0e7edb22254c method: GET response: - body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-20T14:18:27.035978Z","gateway_networks":[],"id":"38056808-01b1-40cd-9c29-0ef6cd790859","ip":{"address":"51.15.245.191","created_at":"2023-10-20T14:18:26.936140Z","gateway_id":"38056808-01b1-40cd-9c29-0ef6cd790859","id":"52b38e88-8e0b-4580-8776-8b524fc7aca3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"191-245-15-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-20T14:18:26.936140Z","zone":"fr-par-1"},"is_legacy":true,"name":"The - Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-20T14:18:37.102467Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' + body: '{"bastion_enabled":false,"bastion_port":61000,"can_upgrade_to":null,"created_at":"2023-10-27T09:19:50.463377Z","gateway_networks":[],"id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","ip":{"address":"51.158.103.254","created_at":"2023-10-27T09:19:50.275799Z","gateway_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","id":"57d892b9-1f4d-4e63-be19-8f3646cc417b","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"254-103-158-51.instances.scw.cloud","tags":[],"updated_at":"2023-10-27T09:19:50.275799Z","zone":"fr-par-1"},"is_legacy":true,"name":"The + Public Gateway","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":{"bandwidth":100000000,"name":"VPC-GW-S","zone":"fr-par-1"},"updated_at":"2023-10-27T09:20:04.051485Z","upstream_dns_servers":[],"version":"0.6.0","zone":"fr-par-1"}' headers: Content-Length: - - "980" + - "982" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:36 GMT + - Fri, 27 Oct 2023 09:20:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2970,7 +2963,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09761d5e-6b74-4561-9ac3-6a4644b2cbb9 + - 0cd15011-38f3-4ef8-9f11-5481b2c5769a status: 200 OK code: 200 duration: "" @@ -2979,9 +2972,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/38056808-01b1-40cd-9c29-0ef6cd790859?cleanup_dhcp=false + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/3442e2a0-edcd-4bb6-b074-0e7edb22254c?cleanup_dhcp=false method: DELETE response: body: "" @@ -2991,7 +2984,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:36 GMT + - Fri, 27 Oct 2023 09:20:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3001,7 +2994,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a5cdbea-ba5b-46e5-9b5d-315a4fa993f5 + - 71189819-7675-4f26-bbf3-c5cacba83830 status: 204 No Content code: 204 duration: "" @@ -3010,12 +3003,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/38056808-01b1-40cd-9c29-0ef6cd790859 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways/3442e2a0-edcd-4bb6-b074-0e7edb22254c method: GET response: - body: '{"message":"resource is not found","resource":"gateway","resource_id":"38056808-01b1-40cd-9c29-0ef6cd790859","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"3442e2a0-edcd-4bb6-b074-0e7edb22254c","type":"not_found"}' headers: Content-Length: - "128" @@ -3024,7 +3017,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:36 GMT + - Fri, 27 Oct 2023 09:20:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3034,7 +3027,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 187aeb9b-f24e-41af-b787-ed8fdf09c3b5 + - 2ac57e21-8fe2-4df1-bdc3-31ef71eb9eb7 status: 404 Not Found code: 404 duration: "" @@ -3043,9 +3036,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/52b38e88-8e0b-4580-8776-8b524fc7aca3 + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/ips/57d892b9-1f4d-4e63-be19-8f3646cc417b method: DELETE response: body: "" @@ -3055,7 +3048,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:37 GMT + - Fri, 27 Oct 2023 09:20:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3065,7 +3058,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa98632d-48f8-431e-a875-c068221f287b + - c1051e0b-4803-4cf7-92e7-cc7c23fcfc76 status: 204 No Content code: 204 duration: "" @@ -3074,29 +3067,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.472674+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"e6c098b1-27fb-4122-a199-67a4b10a2860","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:19:51.076352+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"098846b5-7816-4025-9b0d-fed4391018de","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:77","maintenances":[],"modification_date":"2023-10-20T14:19:31.589128+00:00","name":"Scaleway - Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.32.17","private_nics":[{"creation_date":"2023-10-20T14:18:51.027324+00:00","id":"c99d3bd0-86cc-4a85-9591-4bb630c9fd39","mac_address":"02:00:00:14:57:d1","modification_date":"2023-10-20T14:19:22.894671+00:00","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","server_id":"e6c098b1-27fb-4122-a199-67a4b10a2860","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.472674+00:00","export_uri":null,"id":"87f51bef-dd4c-4d60-a2ca-fb33696ef6b0","modification_date":"2023-10-20T14:18:28.472674+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"e6c098b1-27fb-4122-a199-67a4b10a2860","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1701","node_id":"16","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:be:51","maintenances":[],"modification_date":"2023-10-27T09:20:48.795381+00:00","name":"Scaleway + Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.224.31","private_nics":[{"creation_date":"2023-10-27T09:20:07.872536+00:00","id":"671b4e09-8d51-49e9-b29f-97a63b3ab666","mac_address":"02:00:00:14:74:1b","modification_date":"2023-10-27T09:20:39.805933+00:00","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","server_id":"098846b5-7816-4025-9b0d-fed4391018de","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:19:51.076352+00:00","export_uri":null,"id":"f8850b0a-6bf1-4423-b6b4-dedbcaf24282","modification_date":"2023-10-27T09:19:51.076352+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"098846b5-7816-4025-9b0d-fed4391018de","name":"Scaleway Instance"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3087" + - "3090" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:37 GMT + - Fri, 27 Oct 2023 09:20:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3106,7 +3099,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 375a89cb-ad0b-462b-9d85-17229eb2469a + - 69f9dca3-4554-4dfc-9e89-3ed95e30cef5 status: 200 OK code: 200 duration: "" @@ -3115,29 +3108,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.472674+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"e6c098b1-27fb-4122-a199-67a4b10a2860","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:19:51.076352+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"098846b5-7816-4025-9b0d-fed4391018de","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:77","maintenances":[],"modification_date":"2023-10-20T14:19:31.589128+00:00","name":"Scaleway - Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.32.17","private_nics":[{"creation_date":"2023-10-20T14:18:51.027324+00:00","id":"c99d3bd0-86cc-4a85-9591-4bb630c9fd39","mac_address":"02:00:00:14:57:d1","modification_date":"2023-10-20T14:19:22.894671+00:00","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","server_id":"e6c098b1-27fb-4122-a199-67a4b10a2860","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.472674+00:00","export_uri":null,"id":"87f51bef-dd4c-4d60-a2ca-fb33696ef6b0","modification_date":"2023-10-20T14:18:28.472674+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"e6c098b1-27fb-4122-a199-67a4b10a2860","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1701","node_id":"16","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:be:51","maintenances":[],"modification_date":"2023-10-27T09:20:48.795381+00:00","name":"Scaleway + Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.224.31","private_nics":[{"creation_date":"2023-10-27T09:20:07.872536+00:00","id":"671b4e09-8d51-49e9-b29f-97a63b3ab666","mac_address":"02:00:00:14:74:1b","modification_date":"2023-10-27T09:20:39.805933+00:00","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","server_id":"098846b5-7816-4025-9b0d-fed4391018de","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:19:51.076352+00:00","export_uri":null,"id":"f8850b0a-6bf1-4423-b6b4-dedbcaf24282","modification_date":"2023-10-27T09:19:51.076352+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"098846b5-7816-4025-9b0d-fed4391018de","name":"Scaleway Instance"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3087" + - "3090" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:42 GMT + - Fri, 27 Oct 2023 09:20:59 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3147,7 +3140,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba3ca904-f5dc-49f3-8222-c4ace165fc22 + - 3789261f-8f5b-4e2f-946c-0c64377570d2 status: 200 OK code: 200 duration: "" @@ -3156,29 +3149,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.472674+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"e6c098b1-27fb-4122-a199-67a4b10a2860","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:19:51.076352+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"098846b5-7816-4025-9b0d-fed4391018de","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:77","maintenances":[],"modification_date":"2023-10-20T14:19:31.589128+00:00","name":"Scaleway - Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.32.17","private_nics":[{"creation_date":"2023-10-20T14:18:51.027324+00:00","id":"c99d3bd0-86cc-4a85-9591-4bb630c9fd39","mac_address":"02:00:00:14:57:d1","modification_date":"2023-10-20T14:19:22.894671+00:00","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","server_id":"e6c098b1-27fb-4122-a199-67a4b10a2860","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.472674+00:00","export_uri":null,"id":"87f51bef-dd4c-4d60-a2ca-fb33696ef6b0","modification_date":"2023-10-20T14:18:28.472674+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"e6c098b1-27fb-4122-a199-67a4b10a2860","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1701","node_id":"16","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:be:51","maintenances":[],"modification_date":"2023-10-27T09:20:48.795381+00:00","name":"Scaleway + Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.224.31","private_nics":[{"creation_date":"2023-10-27T09:20:07.872536+00:00","id":"671b4e09-8d51-49e9-b29f-97a63b3ab666","mac_address":"02:00:00:14:74:1b","modification_date":"2023-10-27T09:20:39.805933+00:00","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","server_id":"098846b5-7816-4025-9b0d-fed4391018de","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:19:51.076352+00:00","export_uri":null,"id":"f8850b0a-6bf1-4423-b6b4-dedbcaf24282","modification_date":"2023-10-27T09:19:51.076352+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"098846b5-7816-4025-9b0d-fed4391018de","name":"Scaleway Instance"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3087" + - "3090" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:48 GMT + - Fri, 27 Oct 2023 09:21:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3188,7 +3181,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5901eb85-375c-46d7-8d9a-498d375859bf + - 61996e63-589a-4a31-91f4-bfc94c11b9c1 status: 200 OK code: 200 duration: "" @@ -3197,29 +3190,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de method: GET response: body: '{"server":{"allowed_actions":["stop_in_place","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.472674+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"e6c098b1-27fb-4122-a199-67a4b10a2860","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:19:51.076352+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"098846b5-7816-4025-9b0d-fed4391018de","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"901","node_id":"9","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:29:b1:77","maintenances":[],"modification_date":"2023-10-20T14:19:31.589128+00:00","name":"Scaleway - Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":"10.68.32.17","private_nics":[{"creation_date":"2023-10-20T14:18:51.027324+00:00","id":"c99d3bd0-86cc-4a85-9591-4bb630c9fd39","mac_address":"02:00:00:14:57:d1","modification_date":"2023-10-20T14:19:22.894671+00:00","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","server_id":"e6c098b1-27fb-4122-a199-67a4b10a2860","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.472674+00:00","export_uri":null,"id":"87f51bef-dd4c-4d60-a2ca-fb33696ef6b0","modification_date":"2023-10-20T14:18:28.472674+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"e6c098b1-27fb-4122-a199-67a4b10a2860","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1701","node_id":"16","platform_id":"14","zone_id":"par1"},"mac_address":"de:00:00:2a:be:51","maintenances":[],"modification_date":"2023-10-27T09:20:48.795381+00:00","name":"Scaleway + Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":"10.64.224.31","private_nics":[{"creation_date":"2023-10-27T09:20:07.872536+00:00","id":"671b4e09-8d51-49e9-b29f-97a63b3ab666","mac_address":"02:00:00:14:74:1b","modification_date":"2023-10-27T09:20:39.805933+00:00","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","server_id":"098846b5-7816-4025-9b0d-fed4391018de","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:19:51.076352+00:00","export_uri":null,"id":"f8850b0a-6bf1-4423-b6b4-dedbcaf24282","modification_date":"2023-10-27T09:19:51.076352+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"098846b5-7816-4025-9b0d-fed4391018de","name":"Scaleway Instance"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3087" + - "3090" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:53 GMT + - Fri, 27 Oct 2023 09:21:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3229,7 +3222,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1ba48cf-fc00-4dfe-9c2d-7eaccc6888de + - e5913d7e-5f58-4cca-8d1c-d36787213897 status: 200 OK code: 200 duration: "" @@ -3238,19 +3231,19 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.472674+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"e6c098b1-27fb-4122-a199-67a4b10a2860","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:19:51.076352+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"098846b5-7816-4025-9b0d-fed4391018de","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:b1:77","maintenances":[],"modification_date":"2023-10-20T14:19:55.235292+00:00","name":"Scaleway - Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2023-10-20T14:18:51.027324+00:00","id":"c99d3bd0-86cc-4a85-9591-4bb630c9fd39","mac_address":"02:00:00:14:57:d1","modification_date":"2023-10-20T14:19:22.894671+00:00","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","server_id":"e6c098b1-27fb-4122-a199-67a4b10a2860","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.472674+00:00","export_uri":null,"id":"87f51bef-dd4c-4d60-a2ca-fb33696ef6b0","modification_date":"2023-10-20T14:18:28.472674+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"e6c098b1-27fb-4122-a199-67a4b10a2860","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:be:51","maintenances":[],"modification_date":"2023-10-27T09:21:13.023467+00:00","name":"Scaleway + Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2023-10-27T09:20:07.872536+00:00","id":"671b4e09-8d51-49e9-b29f-97a63b3ab666","mac_address":"02:00:00:14:74:1b","modification_date":"2023-10-27T09:20:39.805933+00:00","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","server_id":"098846b5-7816-4025-9b0d-fed4391018de","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:19:51.076352+00:00","export_uri":null,"id":"f8850b0a-6bf1-4423-b6b4-dedbcaf24282","modification_date":"2023-10-27T09:19:51.076352+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"098846b5-7816-4025-9b0d-fed4391018de","name":"Scaleway Instance"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: @@ -3260,7 +3253,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:58 GMT + - Fri, 27 Oct 2023 09:21:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3270,7 +3263,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e31b7136-4ac9-4a2a-bc60-341d6b5d4db7 + - 3201d3db-df2f-4286-b73b-7321ad3feca9 status: 200 OK code: 200 duration: "" @@ -3279,12 +3272,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de/private_nics method: GET response: - body: '{"private_nics":[{"creation_date":"2023-10-20T14:18:51.027324+00:00","id":"c99d3bd0-86cc-4a85-9591-4bb630c9fd39","mac_address":"02:00:00:14:57:d1","modification_date":"2023-10-20T14:19:22.894671+00:00","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","server_id":"e6c098b1-27fb-4122-a199-67a4b10a2860","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2023-10-27T09:20:07.872536+00:00","id":"671b4e09-8d51-49e9-b29f-97a63b3ab666","mac_address":"02:00:00:14:74:1b","modification_date":"2023-10-27T09:20:39.805933+00:00","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","server_id":"098846b5-7816-4025-9b0d-fed4391018de","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "381" @@ -3293,9 +3286,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:58 GMT + - Fri, 27 Oct 2023 09:21:15 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -3306,7 +3299,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b45842c6-8f63-427f-8ccb-e67e1e079379 + - b6a46b4a-766c-4b61-9fa8-df12e54c5cb5 X-Total-Count: - "1" status: 200 OK @@ -3317,12 +3310,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860/private_nics/c99d3bd0-86cc-4a85-9591-4bb630c9fd39 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de/private_nics/671b4e09-8d51-49e9-b29f-97a63b3ab666 method: GET response: - body: '{"private_nic":{"creation_date":"2023-10-20T14:18:51.027324+00:00","id":"c99d3bd0-86cc-4a85-9591-4bb630c9fd39","mac_address":"02:00:00:14:57:d1","modification_date":"2023-10-20T14:19:22.894671+00:00","private_network_id":"951d085f-c13a-4075-b56c-7b566cc7d0e8","server_id":"e6c098b1-27fb-4122-a199-67a4b10a2860","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2023-10-27T09:20:07.872536+00:00","id":"671b4e09-8d51-49e9-b29f-97a63b3ab666","mac_address":"02:00:00:14:74:1b","modification_date":"2023-10-27T09:20:39.805933+00:00","private_network_id":"b8a24e1f-a121-4288-b171-6ba30a5f9ced","server_id":"098846b5-7816-4025-9b0d-fed4391018de","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "378" @@ -3331,7 +3324,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:58 GMT + - Fri, 27 Oct 2023 09:21:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3341,7 +3334,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32a1573a-2650-4c6a-82ca-618cd0b45bdb + - eb7af2c6-cb87-4f42-8ca8-d46eabaf700c status: 200 OK code: 200 duration: "" @@ -3350,9 +3343,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860/private_nics/c99d3bd0-86cc-4a85-9591-4bb630c9fd39 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de/private_nics/671b4e09-8d51-49e9-b29f-97a63b3ab666 method: DELETE response: body: "" @@ -3360,7 +3353,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 20 Oct 2023 14:19:58 GMT + - Fri, 27 Oct 2023 09:21:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3370,7 +3363,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41d609ca-a6f8-42e4-8b44-0b3fcf6785d8 + - 4eeae46e-146e-4bdc-9672-440a2d21a42d status: 204 No Content code: 204 duration: "" @@ -3379,12 +3372,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860/private_nics/c99d3bd0-86cc-4a85-9591-4bb630c9fd39 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de/private_nics/671b4e09-8d51-49e9-b29f-97a63b3ab666 method: GET response: - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"c99d3bd0-86cc-4a85-9591-4bb630c9fd39","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"671b4e09-8d51-49e9-b29f-97a63b3ab666","type":"not_found"}' headers: Content-Length: - "148" @@ -3393,7 +3386,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:59 GMT + - Fri, 27 Oct 2023 09:21:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3403,7 +3396,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6163da2e-9eed-4778-a33d-800120a71e24 + - 7485c3cf-5a92-40ef-b8b0-9a2fe35a7389 status: 404 Not Found code: 404 duration: "" @@ -3412,19 +3405,19 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de method: GET response: body: '{"server":{"allowed_actions":["poweron","backup","enable_routed_ip"],"arch":"x86_64","boot_type":"local","bootscript":{"architecture":"x86_64","bootcmdargs":"LINUX_COMMON scaleway boot=local nbd.max_part=16","default":true,"dtb":"","id":"fdfe150f-a870-4ce4-b432-9f56b5b995c1","initrd":"http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz","kernel":"http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230","organization":"11111111-1111-4111-8111-111111111111","project":"11111111-1111-4111-8111-111111111111","public":true,"title":"x86_64 - mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-20T14:18:28.472674+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"e6c098b1-27fb-4122-a199-67a4b10a2860","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian + mainline 4.4.230 rev1","zone":"fr-par-1"},"commercial_type":"DEV1-S","creation_date":"2023-10-27T09:19:51.076352+00:00","dynamic_ip_required":false,"enable_ipv6":false,"extra_networks":[],"hostname":"scaleway-instance","id":"098846b5-7816-4025-9b0d-fed4391018de","image":{"arch":"x86_64","creation_date":"2023-10-12T11:24:29.302007+00:00","default_bootscript":null,"extra_volumes":{},"from_server":null,"id":"92e694e8-5f29-420f-b48d-c3cb88de283d","modification_date":"2023-10-12T11:24:29.302007+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"7d4fc60d-3d56-453e-9749-8704fe502fa3","name":"Debian - Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:29:b1:77","maintenances":[],"modification_date":"2023-10-20T14:19:55.235292+00:00","name":"Scaleway - Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default - security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-20T14:18:28.472674+00:00","export_uri":null,"id":"87f51bef-dd4c-4d60-a2ca-fb33696ef6b0","modification_date":"2023-10-20T14:18:28.472674+00:00","name":"Debian - Bullseye","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"e6c098b1-27fb-4122-a199-67a4b10a2860","name":"Scaleway + Bullseye","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:2a:be:51","maintenances":[],"modification_date":"2023-10-27T09:21:13.023467+00:00","name":"Scaleway + Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":false,"security_group":{"id":"ac7c7160-8415-425b-8cf0-9976ee15ccd1","name":"Default + security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2023-10-27T09:19:51.076352+00:00","export_uri":null,"id":"f8850b0a-6bf1-4423-b6b4-dedbcaf24282","modification_date":"2023-10-27T09:19:51.076352+00:00","name":"Debian + Bullseye","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"098846b5-7816-4025-9b0d-fed4391018de","name":"Scaleway Instance"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: @@ -3434,7 +3427,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:19:59 GMT + - Fri, 27 Oct 2023 09:21:15 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3444,7 +3437,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77ad5a88-0cb5-42ac-b532-e8c5ed4eedfa + - d6b81587-bc8a-488b-8d8e-cfac57f7aa5b status: 200 OK code: 200 duration: "" @@ -3453,9 +3446,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de method: DELETE response: body: "" @@ -3463,7 +3456,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 20 Oct 2023 14:19:59 GMT + - Fri, 27 Oct 2023 09:21:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3473,7 +3466,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d36ac5a3-6100-461b-9981-c52489333bbc + - b9f628ca-31d8-4929-b3f6-80975f88f9ba status: 204 No Content code: 204 duration: "" @@ -3482,12 +3475,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6c098b1-27fb-4122-a199-67a4b10a2860 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/098846b5-7816-4025-9b0d-fed4391018de method: GET response: - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"e6c098b1-27fb-4122-a199-67a4b10a2860","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"098846b5-7816-4025-9b0d-fed4391018de","type":"not_found"}' headers: Content-Length: - "143" @@ -3496,7 +3489,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:00 GMT + - Fri, 27 Oct 2023 09:21:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3506,7 +3499,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2ce2ddc-642b-465f-86c4-f364dfa37691 + - c2c55156-2cdb-4ba5-8595-b2f0943e010c status: 404 Not Found code: 404 duration: "" @@ -3515,9 +3508,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/87f51bef-dd4c-4d60-a2ca-fb33696ef6b0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f8850b0a-6bf1-4423-b6b4-dedbcaf24282 method: DELETE response: body: "" @@ -3525,7 +3518,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 20 Oct 2023 14:20:00 GMT + - Fri, 27 Oct 2023 09:21:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3535,7 +3528,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1478e04d-9827-4737-9f8e-742e1cf91247 + - 9ca79d2a-66d9-477a-bdc0-824189845f41 status: 204 No Content code: 204 duration: "" @@ -3544,9 +3537,9 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.1; linux; amd64) terraform-provider/develop + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.3; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/951d085f-c13a-4075-b56c-7b566cc7d0e8 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b8a24e1f-a121-4288-b171-6ba30a5f9ced method: DELETE response: body: "" @@ -3556,7 +3549,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 20 Oct 2023 14:20:00 GMT + - Fri, 27 Oct 2023 09:21:16 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3566,7 +3559,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8954549b-0bb9-46f4-b927-bd7885a16dac + - 0afe6460-ab89-4e42-a390-cc4b719bb875 status: 204 No Content code: 204 duration: "" From 1a37165553a9a2761a2cddfe3d6fc576f439e8ab Mon Sep 17 00:00:00 2001 From: Yacine FODIL Date: Fri, 3 Nov 2023 16:58:44 +0100 Subject: [PATCH 4/5] remove vpc v1 --- scaleway/helpers_vpc.go | 31 ++++++++------------------- scaleway/resource_k8s_cluster_test.go | 7 +----- scaleway/resource_k8s_pool_test.go | 7 +----- 3 files changed, 11 insertions(+), 34 deletions(-) diff --git a/scaleway/helpers_vpc.go b/scaleway/helpers_vpc.go index 9778f03db3..2d4178466e 100644 --- a/scaleway/helpers_vpc.go +++ b/scaleway/helpers_vpc.go @@ -9,28 +9,15 @@ import ( "github.com/hashicorp/go-cty/cty" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - v1 "github.com/scaleway/scaleway-sdk-go/api/vpc/v1" - v2 "github.com/scaleway/scaleway-sdk-go/api/vpc/v2" + "github.com/scaleway/scaleway-sdk-go/api/vpc/v2" "github.com/scaleway/scaleway-sdk-go/scw" validator "github.com/scaleway/scaleway-sdk-go/validation" ) -// vpcAPIWithZoneAndID -func vpcAPIWithZoneAndID(m interface{}, id string) (*v1.API, scw.Zone, string, error) { - meta := m.(*Meta) - vpcAPI := v1.NewAPI(meta.scwClient) - - zone, ID, err := parseZonedID(id) - if err != nil { - return nil, "", "", err - } - return vpcAPI, zone, ID, err -} - // vpcAPIWithRegion returns a new VPC API and the region for a Create request -func vpcAPIWithRegion(d *schema.ResourceData, m interface{}) (*v2.API, scw.Region, error) { +func vpcAPIWithRegion(d *schema.ResourceData, m interface{}) (*vpc.API, scw.Region, error) { meta := m.(*Meta) - vpcAPI := v2.NewAPI(meta.scwClient) + vpcAPI := vpc.NewAPI(meta.scwClient) region, err := extractRegion(d, meta) if err != nil { @@ -40,9 +27,9 @@ func vpcAPIWithRegion(d *schema.ResourceData, m interface{}) (*v2.API, scw.Regio } // vpcAPIWithRegionAndID returns a new VPC API with locality and ID extracted from the state -func vpcAPIWithRegionAndID(m interface{}, id string) (*v2.API, scw.Region, string, error) { +func vpcAPIWithRegionAndID(m interface{}, id string) (*vpc.API, scw.Region, string, error) { meta := m.(*Meta) - vpcAPI := v2.NewAPI(meta.scwClient) + vpcAPI := vpc.NewAPI(meta.scwClient) region, ID, err := parseRegionalID(id) if err != nil { @@ -51,13 +38,13 @@ func vpcAPIWithRegionAndID(m interface{}, id string) (*v2.API, scw.Region, strin return vpcAPI, region, ID, err } -func vpcAPI(m interface{}) (*v2.API, error) { +func vpcAPI(m interface{}) (*vpc.API, error) { meta, ok := m.(*Meta) if !ok { return nil, fmt.Errorf("wrong type: %T", m) } - return v2.NewAPI(meta.scwClient), nil + return vpc.NewAPI(meta.scwClient), nil } func expandSubnets(d *schema.ResourceData) (ipv4Subnets []scw.IPNet, ipv6Subnets []scw.IPNet, err error) { @@ -89,7 +76,7 @@ func flattenAndSortSubnets(sub interface{}) (interface{}, interface{}) { switch subnets := sub.(type) { case []scw.IPNet: return flattenAndSortIPNetSubnets(subnets) - case []*v2.Subnet: + case []*vpc.Subnet: return flattenAndSortSubnetV2s(subnets) default: return "", nil @@ -134,7 +121,7 @@ func flattenAndSortIPNetSubnets(subnets []scw.IPNet) (interface{}, interface{}) return flattenedipv4Subnets, flattenedipv6Subnets } -func flattenAndSortSubnetV2s(subnets []*v2.Subnet) (interface{}, interface{}) { +func flattenAndSortSubnetV2s(subnets []*vpc.Subnet) (interface{}, interface{}) { if subnets == nil { return "", nil } diff --git a/scaleway/resource_k8s_cluster_test.go b/scaleway/resource_k8s_cluster_test.go index c3e2f0ca05..53ad75cd49 100644 --- a/scaleway/resource_k8s_cluster_test.go +++ b/scaleway/resource_k8s_cluster_test.go @@ -613,12 +613,7 @@ func testAccCheckScalewayK8sClusterPrivateNetworkID(tt *TestTools, clusterName, _, _, pnID, err := vpcAPIWithRegionAndID(tt.Meta, rs.Primary.ID) if err != nil { - if strings.Contains(err.Error(), "bad region format") { - _, _, pnID, err = vpcAPIWithZoneAndID(tt.Meta, rs.Primary.ID) - if err != nil { - return err - } - } + return err } if clusterPNID == nil { diff --git a/scaleway/resource_k8s_pool_test.go b/scaleway/resource_k8s_pool_test.go index 8c8d10d9da..b6844d1df8 100644 --- a/scaleway/resource_k8s_pool_test.go +++ b/scaleway/resource_k8s_pool_test.go @@ -551,12 +551,7 @@ func testAccCheckScalewayK8SPoolServersAreInPrivateNetwork(tt *TestTools, cluste } _, _, pnID, err := vpcAPIWithRegionAndID(tt.Meta, rs.Primary.ID) if err != nil { - if strings.Contains(err.Error(), "bad region format") { - _, _, pnID, err = vpcAPIWithZoneAndID(tt.Meta, rs.Primary.ID) - if err != nil { - return err - } - } + return err } nodes, err := k8sAPI.ListNodes(&k8s.ListNodesRequest{ From 4529e1c113053cf030bf33843de91af0b32c2b54 Mon Sep 17 00:00:00 2001 From: Yacine FODIL Date: Fri, 3 Nov 2023 17:10:36 +0100 Subject: [PATCH 5/5] fix documentation link --- docs/data-sources/ipam_ip.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/data-sources/ipam_ip.md b/docs/data-sources/ipam_ip.md index 0ae0a0fc8a..8157a97a2b 100644 --- a/docs/data-sources/ipam_ip.md +++ b/docs/data-sources/ipam_ip.md @@ -67,7 +67,7 @@ data "scaleway_ipam_ip" "by_name" { - `resource` - (Optional) Filter by resource ID, type or name. If specified, `type` is required, and at least one of `id` or `name` must be set. - `id` - The ID of the resource that the IP is bound to. - - `type` - The type of the resource to get the IP from. [Documentation](https://pkg.go.dev/github.com/scaleway/scaleway-sdk-go@v1.0.0-beta.21.0.20231020161050-699490ebeefd/api/ipam/v1#pkg-constants) with type list. + - `type` - The type of the resource to get the IP from. [Documentation](https://pkg.go.dev/github.com/scaleway/scaleway-sdk-go@master/api/ipam/v1#pkg-constants) with type list. - `name` - The name of the resource to get the IP from. - `mac_address` - (Optional) The Mac Address linked to the IP.